Need Regex code for my given text

Hi everyone, i’m facing an issue to get details using regex. can anyone help me to find solution. i’m attaching my text file below.

text.txt (77 Bytes)

Output: Andrea R. stera

1 Like

Hi

Hope the below expression would help you resolve this

1- let’s take like you have the string read from that text file and saved as string variable named Strinput

2- Use a assign activity like this to get the final output

stroutput = System.Text.RegularExpressions.Regex.Match(Strinput.ToString, “(?<=Authorizer:).*(?=\ncoordination)”).ToString

Where stroutput is a string variable

Cheers @Learner007

Thank you @Palaniyappan it is working

1 Like

Glad it got resolved

@Learner007

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.