gokul1904
(Glory 01)
1
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
Yoichi
(Yoichi)
2
Hi,
How about the following?
Sample20220921-3.zip (2.4 KB)
Regards,
Gokul001
(Gokul Balaji)
3
HI @gokul1904
Have you tried with Regex expression
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=WD_ExceptionMessage\D:\D)\S.+(?=\D}])").Tostring
Regards
Gokul
system
(system)
Closed
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.