Hi guys, I am trying to remove specific texts of different string variable. May I know how I can write the code to get the expected results? I have checked some posts and saw this function:
For example, if the text I wanna replace is %EnvironVariable%, how can I put this inside the function? I tried using RegEx builder website and this (%EnvironVariable%)+ works on the website but I dunno how to put it inside UiPath.
inputString = "I am Roboto. Contact Me on 123456789 or roboto@gmail.com"
outputString = System.Text.RegularExpressions.Regex.Replace(inputString, "\d{9}", "PhoneNo")