Hi All,
I have to extract particular word format will be same for sentence
Input:
Group / IDBLue dental plan /k121111
Output :
K121111
Plz help me with regrex pattern
Thanks for the help
Hi All,
I have to extract particular word format will be same for sentence
Input:
Group / IDBLue dental plan /k121111
Output :
K121111
Plz help me with regrex pattern
Thanks for the help
@vaishali
try this expression->
“Group / IDBLue dental plan /k121111”.Split("/"c).Last.ToString
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.