Hi,
Can anyone help me to extract Contract Number, Result from below Json Data.
Regards,
Satheesh
Hi,
Can you share your data as a text file?
Regards,
HI,
It might unable to upload file as you’re new user.
I wrote a simple sample as the following. Hope this helps you.
Sample20220915-6.zip (2.9 KB)
Regards,
HI @g8135
You can try with Regex expression
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=contactNumber”:\s“)\d+").Tostring
Regards
Gokul
Hello @g8135
Kindly try the Regex method
System.Text.RegularExpressions.Regex.Match(YourString,"(?<="contractNumber"\s:\s)["\d]+(?=,)").Tostring.Trim