iboulder
01-19-2016, 03:56 PM
Hi,
Pardon if this has been answered, but my search of the forums didn't return an exact answer.
I would like to extract all occurrences of a string matching a regex as follows:
Regex: BUGID-+?\d{2,10}
Sample Text File: SVN.log
JiraID:BUGID-2580BUGID-2580
BUGID-2582:
JiraID: BUGID-2581-
<blank line>
--------------------
BUGID-9843
The page http://regexr.com/ with the above regex and sample data parses the data correctly. It returns 2 instances of BUGID-2580, BUGID-2582, BUGID-2581, and BUGID-9843.
How do I extract all the BUGIDs (and the number) from my file so I can process each ID? The output can be an array or text file.
Thanks,
S Mckeown
Pardon if this has been answered, but my search of the forums didn't return an exact answer.
I would like to extract all occurrences of a string matching a regex as follows:
Regex: BUGID-+?\d{2,10}
Sample Text File: SVN.log
JiraID:BUGID-2580BUGID-2580
BUGID-2582:
JiraID: BUGID-2581-
<blank line>
--------------------
BUGID-9843
The page http://regexr.com/ with the above regex and sample data parses the data correctly. It returns 2 instances of BUGID-2580, BUGID-2582, BUGID-2581, and BUGID-9843.
How do I extract all the BUGIDs (and the number) from my file so I can process each ID? The output can be an array or text file.
Thanks,
S Mckeown