Get value after Delimiter

I have logging into acme after that I have used get text activity and input like this
If this is your first time logging in please make sure that to go user option s β†’ Rest Test Data

OutPut = Rest Test Data

Can any one

you can try this way

str = If this is your first time logging in, please make sure to go to User Options β†’ Reset Test Data

str.Split({">"},StringSplitOptions.RemoveEmptyEntries)(1)

@rds0_51

1 Like

I will try and let you know you and thanks for quick reply
@Praveen_Mudhiraj

Let’s take u have the value stored in a string variable named Strinput

With Regex method

Stroutput = System.Text.RegularExpressions.Regex.Match(Strinput.ToString, β€œ(?<=\W\s).*$β€œ).Value

Explanation

Hope this helps

Cheers @rds0_51

1 Like

@rds0_51

you can aslo try in this way

Output.split(">"c).last

cheers

1 Like

Thanks both of you it’s working

@Palaniyappan @Praveen_Mudhiraj

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