KongMD Posted February 20, 2012 Posted February 20, 2012 (edited) Hi, all. I'm trying to make a RegEx pattern that will match a string formatted as a time, e.g. 12:04:45. I've tried a couple different patterns, but none are matching. Where am I going wrong? I've verified that the string is inside the $_Time variable. $pattern = '([0-9]+:){3}' $timeArray = StringRegExp ( $_Time, $pattern, 1) Edited February 20, 2012 by KongMD
Moderators Melba23 Posted February 20, 2012 Moderators Posted February 20, 2012 KongMD,If you want all three values then this should do the trick: #include <Array.au3> $pattern = '([0-9]{2})' $_Time = "12:04:45" $timeArray = StringRegExp ( $_Time, $pattern, 3) _ArrayDisplay($timeArray)But if that is the case, why not just use StringSplit#include <Array.au3> $pattern = '([0-9]{2})' $_Time = "12:04:45" $timeArray = StringSplit($_Time, ":") _ArrayDisplay($timeArray)M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
somdcomputerguy Posted February 20, 2012 Posted February 20, 2012 The StringSplit function could be used instead probably.$Time = "09:58:02" $Split = StringSplit($Time, ":") ConSoleWrite($Split[1] & ", " & $Split[2] & ", " & $Split[3] & @LF) - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
KongMD Posted February 20, 2012 Author Posted February 20, 2012 Thanks for the replies The $_Time variable is slightly misnamed; it actually holds the source code to a web page (http://nist.time.gov/timezone.cgi?Eastern/d/-5) that was retrieved with InetGet, and my goal is to store the current hours, mins, and seconds into an array. I appreciate the pattern, M23, but I think it'd return too many results (though I totally would've said the same thing given the info shared in the original post). There are two such time strings in the source code (the other time is cookie expiration), so I want the second instance. After getting that time string, I'd separate it with Split() into the hours/mins/seconds. I haven't written that part yet, but this is another shot at my broken pattern matching: $pattern = '([0-9]{2}:){3}' $timeArray = StringRegExp ( $_Time, $pattern, 3)
jchd Posted February 20, 2012 Posted February 20, 2012 (edited) KongMD, To answer your initial question, your pattern is exactly three times (two digits followed by a semicolumn). If your time string was modelled on 12:34:56: (note the final semicolumn) it would work, but I suspect your format is the more common 12:34:56 (note no : at end) Try (dd:dd:dd) instead or (dd):(dd):(dd) if you want to capture HMS separately Edit: avoid reformat pattern into smileys! Edited February 20, 2012 by jchd This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
KongMD Posted February 20, 2012 Author Posted February 20, 2012 Excellent! That worked beautifully. Thanks, jchd What did I do wrong in my initial pattern?
jchd Posted February 20, 2012 Posted February 20, 2012 Read my previous post again: you were requiring a final semicolumn, as in HH: MM: SS: This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
KongMD Posted February 20, 2012 Author Posted February 20, 2012 Yep, no wonder it wasn't working. Thanks again for your help, jchd!
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