How to write in an input that does not allow spaces

Hello guys my question is the next i have to write a string from my excel, in my excel that String have a spaces but when i have to type in the input of my browser the input takes away the spaces, but when i copy like CTRL + C and CTRL + V WORKS!

If you know the solution let me know thanks

Hey @VAZQUEZ_SOSA_LUIS_ALBERTO

Can you try using β€œChr(32)” instead of spaces(" ")?

Full list of ACII codes here

Cheers

Steve

try set text activity @VAZQUEZ_SOSA_LUIS_ALBERTO

but how can use that Code?

Hi @VAZQUEZ_SOSA_LUIS_ALBERTO,

for example,

yourValue ="test test test"

yourValue = yourValue.Replace(" ",Chr(32))

Regards,
MY

1 Like