Hi when i use get full text , i am getting extra white space , how can i remove it ?
If the whitespace is at ends then use Variable.Trim
Ifthewhitespaces are inbetween and need to remove multiple and use onlyone then use below in assign
variable = System.Text.RegularExpressions.Regex.Replace(varible,"\s{2,}"," ") this ensures any spaces two or more will be replaced with single one…
Cheers
You can use variablename.replace(" “,”")
String.Replace method to replace multiple spaces with a single space. For example:cleanedText = extractedText.Replace(" ", “”)
Replace extractedText with the variable that stores the text obtained from the “Get Full Text” activity.
where do write this expression at : System.Text.RegularExpressions.Regex.Replace(varible,“\s{2,}”," ")