Regex to split between two lines

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

Hope this helps
Usha

@Demo_User

System.Text.RegularExpressions.Regex.Match(YourString,“\d+”).value

image

image

Hi @Demo_User

Try this

System.Text.RegularExpressions.Regex.Match(Input,"[0-9]+").Value

image

Hope this helps!!

image

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