maestrith / AHK-Studio

Created with AHK Studio
http://www.maestrith.com
363 stars 68 forks source link

No text found in the regex #194

Open tdalon opened 5 years ago

tdalon commented 5 years ago

when opening a function from the function tree I get a message box with "No text found in the regex" (see attached image) image Looks like a bug to me. The function where I have this error looks like: ; ------------------------------------------------------------------------------------------------------------------- ; IsSharepointUrl(url) IsSharepointUrl(url){ If (InStr(url,"https://mspe.conti.de/") > 0) or (RegExMatch(url,"https://[a-z]+\d\.conti.de/.*") > 0) or (InStr(url,"https://continental.sharepoint.com/") > 0) { ; workspace1.conti.de cws7.conti.de = url with a few letters followed by one number return true } Else { return false } }