steveR Posted March 6, 2005 Posted March 6, 2005 (edited) I needed this but didn't find anything in a search. Returns the name of the current month in long or short format. Please tell me if there are any problems. expandcollapse popup; ;=============================================================================== ; ; Function name: _MonName() ; Description: Return name of current month in short or long format ; Parameter(s): $format [optional] - 0 = long name (default); 1 = short name ; Return Value(s): On Success - name of month; On error - sets @ERROR = 1, returns empty string ; ;=============================================================================== Func _MonName($format = 0) If Not StringIsInt($format) Or $format < 0 Or $format > 1 Then SetError(1) Return "" EndIf Local $monName If @MON = 1 Then $monName = "January" If @MON = 2 Then $monName = "February" If @MON = 3 Then $monName = "March" If @MON = 4 Then $monName = "April" If @MON = 5 Then $monName = "May" If @MON = 6 Then $monName = "June" If @MON = 7 Then $monName = "July" If @MON = 8 Then $monName = "August" If @MON = 9 Then $monName = "September" If @MON = 10 Then $monName = "October" If @MON = 11 Then $monName = "November" If @MON = 12 Then $monName = "December" If $format = 0 Then Return $monName ElseIf $format = 1 Then Return StringLeft($monName, 3) Else SetError(1) Return "" EndIf EndFunc ;==>_MonName ; EDIT: Ran Tidy Edited March 6, 2005 by steveR AutoIt3 online docs Use it... Know it... Live it...MSDN libraryglobal Help and SupportWindows: Just another pane in the glass.
Insolence Posted March 6, 2005 Posted March 6, 2005 Run Tidy on that and you got yourself a nice UDF "I thoroughly disapprove of duels. If a man should challenge me, I would take him kindly and forgivingly by the hand and lead him to a quiet place and kill him." - Mark TwainPatient: "It hurts when I do $var_"Doctor: "Don't do $var_" - Lar.
CyberSlug Posted March 7, 2005 Posted March 7, 2005 (edited) An alternative (though I didn't comment it): Func _MonthName($format = 0) If $format = 0 Then Local $months = StringSplit("January,February,March,April,May,June,July,August,September,October,November,December", ",") Return $months[@MON] ElseIf $format = 1 Then $abbrev = StringSplit("Jan,Feb,Mar,Apr,June,July,Aug,Sept,Oct,Nov,Dec", ",") Return $abbrev[@MON] & "." Else SetError(1) Return "" EndIf EndFunc EDIT: As pointed out below this code has a bug! Edited March 11, 2005 by CyberSlug Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
zcoacoaz Posted March 7, 2005 Posted March 7, 2005 i made one once, i did it just like cybersulg [font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]
SlimShady Posted March 7, 2005 Posted March 7, 2005 (edited) CyberSlug's version is 50% smaller. Nice Edit: I tried to make it smaller. Not possible... Edited March 8, 2005 by SlimShady
Valik Posted March 8, 2005 Posted March 8, 2005 CS's short format is bugged, though. I'll let you guys figure out the bug.
zcoacoaz Posted March 8, 2005 Posted March 8, 2005 I shall find that bug! [font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]
buckeyexp Posted March 8, 2005 Posted March 8, 2005 I shall find that bug!<{POST_SNAPBACK}>Where is MAY??
zcoacoaz Posted March 8, 2005 Posted March 8, 2005 It's "Shall", i cannot ever be wrong. [font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]
steveR Posted March 8, 2005 Author Posted March 8, 2005 Doh, I dont know why I didn't use an array. I'll change mine since it's slightly faster. AutoIt3 online docs Use it... Know it... Live it...MSDN libraryglobal Help and SupportWindows: Just another pane in the glass.
steveR Posted March 8, 2005 Author Posted March 8, 2005 I've forgotten whole months before, when I used to party. AutoIt3 online docs Use it... Know it... Live it...MSDN libraryglobal Help and SupportWindows: Just another pane in the glass.
zcoacoaz Posted March 8, 2005 Posted March 8, 2005 your avatar is weird. [font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]
therks Posted March 10, 2005 Posted March 10, 2005 An alternative (though I didn't comment it):Func _MonthName($format = 0) If $format = 0 Then Local $months = StringSplit("January,February,March,April,May,June,July,August,September,October,November,December", ",") Return $months[@MON] ElseIf $format = 1 Then $abbrev = StringSplit("Jan,Feb,Mar,Apr,June,July,Aug,Sept,Oct,Nov,Dec", ",") Return $abbrev[@MON] & "." Else SetError(1) Return "" EndIf EndFunc<{POST_SNAPBACK}>Wouldn't this be shorter?Func _MonthName($format = 0) Local $months = StringSplit("January,February,March,April,May,June,July,August,September,October,November,December", ",") If $format = 0 Then Return $months[@MON] ElseIf $format = 1 Then Return StringLeft($months[@MON], 3) Else SetError(1) Return "" EndIf EndFunc(Plus, as buckeyexp pointed out, CS forgot to put May in the $abbrev array) My AutoIt Stuff | My Github
Valik Posted March 11, 2005 Posted March 11, 2005 Wouldn't this be shorter?Func _MonthName($format = 0) Local $months = StringSplit("January,February,March,April,May,June,July,August,September,October,November,December", ",") If $format = 0 Then Return $months[@MON] ElseIf $format = 1 Then Return StringLeft($months[@MON], 3) Else SetError(1) Return "" EndIf EndFunc(Plus, as buckeyexp pointed out, CS forgot to put May in the $abbrev array)<{POST_SNAPBACK}>Typically short dates spell out the full month name for June and July, so while technically shorter, it is also less conventional.
CyberSlug Posted March 11, 2005 Posted March 11, 2005 (edited) Typically short dates spell out the full month name for June and July, so while technically shorter, it is also less conventional.<{POST_SNAPBACK}>You could have just posted the one-line fix, Valik Well, it would be longer with a proper If...Else...EndIf blockFunc _MonthName($format = 0) Local $months = StringSplit("January,February,March,April,May,June,July,August,September,October,November,December", ",") If $format = 0 Then Return $months[@MON] ElseIf $format = 1 Then If $months[@MON] <= 4 Then Return $months[@MON] Return StringLeft($months[@MON], 3);otherwise Else SetError(1) Return "" EndIf EndFuncEdit: As pointed out by Valik, this code also has a bug! Edited March 11, 2005 by CyberSlug Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Valik Posted March 11, 2005 Posted March 11, 2005 (edited) I think you're bugged again, CS. You're going to return January, February, March, and April. You could have just posted the one-line fix, Valik How about I cut the number of lines in half?Func _MonthName($nLongName = 0) Local $sAll = "January,February,March,April,May,June,July,August,September,October,November,December" Local $sMonth = StringMid($sAll, StringInStr($sAll, ",", 0, @MON - 1) + 1, StringInStr($sAll, ",", 0, @MON) - StringInStr($sAll, ",", 0, @MON - 1) - 1) If $nLongName Or StringLen($sMonth) <= 4 Then Return $sMonth Return StringLeft($sMonth, 3) EndFuncEdit: Fixed typo, added quote. Edited March 11, 2005 by Valik
CyberSlug Posted March 11, 2005 Posted March 11, 2005 Another good catch. I should give up posting to this thread... but not before I say the following: Ha ha, function body is only TWO lines--and I tested this time! Watch for word wrap. Func _MonthName($nLongName = 0) If $nLongName Or StringLen(StringMid("January,February,March,April,May,June,July,August,September,October,November,December", StringInStr("January,February,March,April,May,June,July,August,September,October,November,December", ",", 0, @MON - 1) + 1, StringInStr("January,February,March,April,May,June,July,August,September,October,November,December", ",", 0, @MON) - StringInStr("January,February,March,April,May,June,July,August,September,October,November,December", ",", 0, @MON - 1) - 1)) <= 4 Then Return StringMid("January,February,March,April,May,June,July,August,September,October,November,December", StringInStr("January,February,March,April,May,June,July,August,September,October,November,December", ",", 0, @MON - 1) + 1, StringInStr("January,February,March,April,May,June,July,August,September,October,November,December", ",", 0, @MON) - StringInStr("January,February,March,April,May,June,July,August,September,October,November,December", ",", 0, @MON - 1) - 1) Return StringLeft(StringMid("January,February,March,April,May,June,July,August,September,October,November,December", StringInStr("January,February,March,April,May,June,July,August,September,October,November,December", ",", 0, @MON - 1) + 1, StringInStr("January,February,March,April,May,June,July,August,September,October,November,December", ",", 0, @MON) - StringInStr("January,February,March,April,May,June,July,August,September,October,November,December", ",", 0, @MON - 1) - 1), 3) EndFunc Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
therks Posted March 11, 2005 Posted March 11, 2005 (edited) Typically short dates spell out the full month name for June and July, so while technically shorter, it is also less conventional.<{POST_SNAPBACK}>I see. I did not know that.*Edit: Question. Valik, why did you use that method with StringMid and StringInStr instead of just using an array?Based from your example, wouldn't this be more efficient?Func _MonthName2($nLongName = 0) Local $aMonths = StringSplit("January,February,March,April,May,June,July,August,September,October,November,December", ",") If $nLongName Or StringLen($aMonths[@MON]) <= 4 Then Return $aMonths[@MON] Return StringLeft($aMonths[@MON], 3) EndFuncI'm not going to touch CS's code with a ten foot pole. Edited March 11, 2005 by Saunders My AutoIt Stuff | My Github
CyberSlug Posted March 11, 2005 Posted March 11, 2005 I'm not going to touch CS's code with a ten foot pole. <{POST_SNAPBACK}>It's just Valik's code with the $sAll and $sMonth variables replaced with the literal strings. Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Valik Posted March 12, 2005 Posted March 12, 2005 Saunders, I wasn't going for efficiency, I was simply demonstrating a different way of doing it and also cutting the length of the code down significantly. I'm also not a fan of the StringSplit trick. Run-time processing of something known at compile time seems a bit silly to me.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now