Regexs that require split within a line
Input :abc12344uvw
Output:12344
Regex expression should get the list of digits between the line
HI @Demo_User
How about this expression
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=Orchestrator Design:)\d+|(?<=Orchestrator leve:\s)\d+|(?<=Orchestrator attempt:)\S+").Tostring
System.Text.RegularExpressions.Regex.Match(YourString,“\d+”).value
Hi @Demo_User
Try this
System.Text.RegularExpressions.Regex.Match(Input,"[0-9]+").Value
Hope this helps!!
How many times do you edit the question even after getting the answer?
it is better to make clear about your requirement and then post the question