Hi,
I want to find digits string.
String be like :- “javascript:drillinvoice(‘344’, ‘view’, ‘ri’, ‘25288’);”
I want only “25288” from the string.
Any one pls help!!!
Hi,
I want to find digits string.
String be like :- “javascript:drillinvoice(‘344’, ‘view’, ‘ri’, ‘25288’);”
I want only “25288” from the string.
Any one pls help!!!
st1= “javascript:drillinvoice(‘344’, ‘view’, ‘ri’, ‘25288’);”
‘25288’=split(split(st1,“,”)(3),“)”)(0).ToString
I had tried “\d{6}” this one.
It doesn’t give any output.
Any other regex solution for same??
Hi Sams,
Use this Pattern: \d{5}
Thanks for helping…