Skip to main content

I would like to extract text between *** CProtOC*** as a separate attribute from text file

* E * *** CProtOC *** FCLID [5318] - FCL [Fuse] - FOID [2634] - KEY_ID node NOT FOUND text_line

 

 

You can use the following regular expression in a string searcher which will return any text that is sandwiched between groups of 3 asterisksd

(?<=\*{3}).*(?=\*{3})

Reply