how to extract the first phone number form the string:
“message”: “Telephone : mobile\r\n+00743411252\r\n+08040534576\r\n”,
how to extract the first phone number form the string:
“message”: “Telephone : mobile\r\n+00743411252\r\n+08040534576\r\n”,
HI @robot_robot
How about this expression?
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=mobile\n)\d+").Tostring
Regards
Gokul
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=mobile\W\S\W\S\W)\d+").Tostring
Regards
Gokul
which part do you refer with YourString?
Yourstring
refer to the above input that you shared. @robot_robot
Regards
Gokul
how to apply this on a datatable that has turned to a string through output datatable