Question

how to extract text between *** text *** from text file attribute

  • 25 May 2020
  • 1 reply
  • 21 views

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

 

 


1 reply

Userlevel 1
Badge +21

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