Identifying digits inside apostrope

Hi @Hardik_Durgam ,

If you wish to specifically target digits, then you can use this regex pattern to get the job done:

image

image

//adding extra quote to escape character
System.Text.RegularExpressions.Regex.Replace(str_variable,"((?<=\d)"")|(""(?=\d))",String.Empty)

RemoveQuotes.xaml (5.1 KB)

Kind Regards,
Ashwin A.K

1 Like