Get Emp_name and Emp_id from array string

@basuraj.kumbhar
give a try on regex (Match Activity) or Regex.Match(… ) Method
with following patterns:


(?<=Employee Name:).*(?="Employee ID)


(?<=Employee ID:)\d+

with a later trim, the unneeded blanks can be removed

Also have a look here:

3 Likes