Extract value from JSON String

Hi team ,

I have below value in string -

[{“WD_ExceptionID”:“WD-0003”,“WD_ExceptionMessage”:“Company Address is not matching with workday custom report”}]

I want to extract “WD_ExceptionMessage” value from the string.

Can you please help.

Regards,
G

Hi,

How about the following?

Sample20220921-3.zip (2.4 KB)

Regards,

HI @gokul1904

Have you tried with Regex expression

System.Text.RegularExpressions.Regex.Match(YourString,"(?<=WD_ExceptionMessage\D:\D)\S.+(?=\D}])").Tostring

Regards
Gokul

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.