View Single Post
  #1  
Old 01-19-2016, 02:56 PM
iboulder iboulder is online now
Registered User
 
Join Date: 05-26-2011
Posts: 2
Extract values from a file

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
Reply With Quote