Hi,
Need help to get the data from the regex command.
Input
Name: test1 abc
Name :test2 bcd
Name : Test3 abcd
Name : test4 cgf
name : test5 cdf
name :test6 909
name : test7 808
How can I get all the name after the symbol “:”
I did try to used below regex command but not all name can be captured
(?<=Name:|\s:\s|(?<=Name:[^\s])).*
thank you
Regards
jamuri