SAMPLE PATTERN:
<h3 title="John Doe, SEX, AGE" class="name"><a class="title" href="/private/record/50920067,-RUO,CAP?searchController=searchV2&searchId=1212163343&pos=14&total=684&searchCacheKey=293aa850-67bc-43f7-baff-26abc91e1f81%2C1Fdl">John Doe, SEX, AGE, </a><div class="badges"><abbr title="John Doe, SEX, AGE is a 1st level resident" class="degree-icon ">2<sup>nd</sup></abbr></div></h3>
REGEX RETURNED USING EASYPATTERNS:
<a class="title" href="/private/record[ longest 1 to 400 digits or letters or <!"#$%&'()*+,-./\:;=?@[]^_`{}~|> ]>[ capture( longest 1 to 50 letters or whitespace or <!"#$%&'()*+,-./\:;=?@[]^_`{}~|> ) ]</a>
Code: Select all
Let>URL=https://www.example.com/count=25
IEGetTags>%URL%,div,H,arrTag
//NOTE: I used the debugger here, and the "arrTag" array showed 639 results. I exploded the array and the tags were indeed pulled correctly
//CODE FOR EASYPATTERN REGEX:
Let>tmp0=<a class="title" href="/private/record[ longest 1 to 400 digits or letters or <!"#$%&'()*+,-./\:;=?@[]^_`{}~|> ]>[ capture( longest 1 to 50 letters or whitespace or <!"#$%&'()*+,-./\:;=?@[]^_`{}~|> ) ]</a>
RegEx>tmp0,arrTag,1,Matches,NumMatches,0,,
MDL>%NumMatches%
NumMatches returns 0 results, when done in EasyPatterns it returned 25 records (which is the correct number)
This is due for a very important project for my job on Monday, and I have no idea why it's not taking this pattern.
Can someone please help? I'm in need of a major save here.
rjw524