I have the following text extraction from an element. How can I remove the “@” symbol from the beginning and format it so that the dates are together?
regards
I have the following text extraction from an element. How can I remove the “@” symbol from the beginning and format it so that the dates are together?
regards
assign this to your text variable to replace all the spaces/new lines
System.text.regularExpressions.regex.replace(textVariable, "([\s@])", "")
HI,
We can ignore the @
sign because` it’s defined to indicate string literal is to be interpreted verbatim and it’s not included in the variable actually.
Please see the following document - section2.
Regards,
Hey
Try with this
yourVariable.Trim()
Regards!
Thanks for the info .
Nop, fue lo primero que intente.
Pero muchs gracias por tomar tu tiempo de reponder mi pregunta, ya pude solucionarlo.
gracias.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.