Merchants Posted August 26, 2012 Share Posted August 26, 2012 (edited) input: 01:10.47i want to detect if this input ONLY has: Numbers : .if so then True Edited August 26, 2012 by Merchants Link to comment Share on other sites More sharing options...
czardas Posted August 26, 2012 Share Posted August 26, 2012 (edited) Please stick to one thread about the This does a little more than only check the existance of the characters. It also checks the order and will allow single digits.$test = "01:10.47" If StringRegExp($test, "d{1,2}:d{1,2}.d{1,2}") Then MsgBox(0, "", "Match found") Edited August 26, 2012 by czardas operator64 ArrayWorkshop Link to comment Share on other sites More sharing options...
Merchants Posted August 27, 2012 Author Share Posted August 27, 2012 (edited) hm can u add 1 thing for me?normal input is: 01:10.47some times i have a input like this: 01:10:47the last ms can be a . or a : Edited August 27, 2012 by Merchants Link to comment Share on other sites More sharing options...
jchd Posted August 27, 2012 Share Posted August 27, 2012 Then make that: $test = "01:10.47" If StringRegExp($test, "d{1,2}:d{1,2}[.:]d{1,2}") Then MsgBox(0, "", "Match found") 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) Link to comment Share on other sites More sharing options...
Merchants Posted August 27, 2012 Author Share Posted August 27, 2012 thx you for ur help Link to comment Share on other sites More sharing options...
jdelaney Posted August 27, 2012 Share Posted August 27, 2012 "." is a wild card, use . instead (force it to be a period) If StringRegExp($test, "d{1,2}{1,2}[.:]d{1,2}") Then MsgBox(0, "", "Match found") IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window. Link to comment Share on other sites More sharing options...
JohnQSmith Posted August 27, 2012 Share Posted August 27, 2012 "." is a wild card, use . instead (force it to be a period) Not inside brackets. Note that special characters do not retain their special meanings inside a set, with the exception of , ^, -,[ and ] match the escaped character inside a set. jdelaney 1 Whenever someone says "pls" because it's shorter than "please", I say "no" because it's shorter than "yes". Link to comment Share on other sites More sharing options...
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