Insert a character in a string

HI @anthonyjr

You can trey with Regex expression

System.Text.RegularExpressions.Regex.Ismatch(YourString,"0$")

In the Then

System.Text.RegularExpressions.Regex.Replace(YourString,"0$","00").Tostring

image

Regards
Gokul

1 Like