Regex for to get name

how to get name from regex

Name: Shaik Muktharvalli

get only Shaik Muktharvalli from regex

thanks
shaik

Hi @shaik.muktharvalli1
(?<=Name:\s+)[A-Za-z\s]+

Hi @shaik.muktharvalli1
please try below expression in assign activity
System.Text.RegularExpressions.Regex.Match(InputString,“(?<=Name:\s).*$”).value

Thanks
Akash Javalekar

Hi @shaik.muktharvalli1

Can you try the below

Input.Split(":"c)(1).Trim

Regards,

Hi @shaikhhussain0506 ,

You can use below regex pattern to get the name

(?<=Name:\s)(.*)

this pattern you can use in your code.