Hi ,
I am looking for regex to match this .
input : “Name” : “abc123”, “age” .etc “Name” : “123”, :“age”
output : abc123
123
Hi ,
I am looking for regex to match this .
input : “Name” : “abc123”, “age” .etc “Name” : “123”, :“age”
output : abc123
123
@syedabidraza
(?<=Name : ).*(?=,)

(?<=Name :).[(A-Z0-9a-z|0-9)]*
try this Expression
you can try this out here regex101: build, test, and debug regex