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
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)
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
Thanks both of you itβs working
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.