As i use REGEX pattern to extract the value from the text.
I am using a general regex pattern inside for each .
B_Identifier (GLN)LJFDLOIEUWURWI824038204830284083dsf
for this text B_Identifier (GLN) is a field name and LJFDLOIEUWURWI824038204830284083dsf is a value but I can’t use this in regex pattern because of “( )”. “(?<=(”+field_name+“))(.*)”-This is the general pattern I use.Each time the field name is getting changed.
Thank you for this,But i already use two patterns inside loop so I don’t want to make it complicate further.Is there any other way to get the data by doing modification in this pattern “(?<=(”+field_name+“))(.*)”
As field_name contains regex special character : ( and ) , basically need to escape if have it recognized as non-special character.
And if you can create list of field name, the workflow might be as the following.