How to get particular data from string manipulation

image

System.Text.RegularExpressions.Regex.Matches(YourString,"(?=EDU).*?(?=;)")(0)
System.Text.RegularExpressions.Regex.Matches(YourString,"(?=EDU).*?(?=;)")(1)

@Anand_Designer

1 Like