Without using RE Framework Assign: Index was outside the bounds of the array

when using “CALCULATE CLIENT SECURITY HASH” after using GETTEXT activity
what is the solution for removing the spaces

Hi @sunil.kumar.s.v

use .Tostring.Trim

1 Like

Hi @sunil.kumar.s.v

If you are trying to remove the Spaces in between of a string you can also use.

yourstring.replace(" “,”")

Thanks.


is that fine?