shaqan Posted September 4, 2017 Posted September 4, 2017 Hello. I have regular expression. But I cannot seem to accommodate with the AutoIT3, because regular expression itself is also containing multiple quotation marks and while trying to execute it, I would receive "Unterminated string" error messages for this row Regular expression pattern itself (tested and seems to be doing what I want it to do) Quote /<meta(?=[^>]*name="description")\s[^>]*content='([^>]*)"/sig Expand Local $iOStr = StringRegExp($iContent, "/<meta(?=[^>]*name="description")\s[^>]*content='([^>]*)"/sig", 1,1) How to fix this? I've tried adding apostrophes here and there and also / or \, does not seem to work out properly.
jchd Posted September 4, 2017 Posted September 4, 2017 Local $iOStr = StringRegExp($iContent, '/<meta(?=[^>]*name="description")\s[^>]*content=''([^>]*)"/sig', 1,1) shaqan 1 Reveal hidden contents 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)
shaqan Posted September 4, 2017 Author Posted September 4, 2017 Hmm. So what I should have been doing was surrounding the regex with apostrophes and adding one inside. Thanks. Much appreciated.
jchd Posted September 4, 2017 Posted September 4, 2017 As a general rule, when your AutoIt string is delimited by one of ' or " you have to double significant ' or " (respectively). It's smart to choose the delimiter (' or ") that will minimize the number of doublings, for best readability. Compare with: Local $iOStr = StringRegExp($iContent, "/<meta(?=[^>]*name=""description"")\s[^>]*content='([^>]*)""/sig", 1,1) Reveal hidden contents 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)
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