Remove % from string

Hi All

I want to remove %from a string but the % in string is not regular

Hi @julietcesat

Check this out
yourString.Replace(“%”,“”)

If you say % is not regular

Then first have a check if that perticular string

In if condition

Yourstring.contains(“%”)

Then

In. Assign activity
yourString.Replace(“%”,“”)

1 Like

Thanks for the help

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