maarvin 0 Posted October 28, 2010 HEyho can someone show me how must be the "pattern" parameter when Before my seearchingword is: <div><a href=" and after my searching word: " target="_blank" onclick It would be really really great when somebody could help me pls... (PS: sorry i am a autoit and a english noob xD,greetings from germany^^) ty Share this post Link to post Share on other sites
GEOSoft 67 Posted October 28, 2010 $sStr = '<div><a href="http://somesite.com#end" target="_blank" onclick' & @CRLF $sStr &= '<p>some text goes here</p>' & @CRLF $sStr &= '<div><a href="http://anothersite.com" target="_blank" onclick="_function"' $aSRE = StringRegExp($sStr, "(?isU)<div.*><a href=\x22(.+)\x22\s*target.+_blank.+onclick", 3) If NOT @Error Then For $i = 0 To UBound($aSRE) -1 MsgBox(4096, "Result", $aSRE[$i]) Next EndIf GeorgeQuestion about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else."Old age and treachery will always overcome youth and skill!" Share this post Link to post Share on other sites