remove spaces

View: New views
3 Messages — Rating Filter:   Alert me  

remove spaces

by [Ricardo Rodríguez] :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi all,

Please, how could I remove the spaces of a string using Velocity?

For instance, the following string "Remove   All Spaces From This
String" must read "RemoveAllSpacesFromThisString".

Thank you so much,

Ricardo

--
Ricardo Rodríguez
Your EPEC Network ICT Team


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...


Re: remove spaces

by Jonathan Revusky-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

[Ricardo Rodriguez] Your EPEC Network ICT Team wrote:

> Hi all,
>
> Please, how could I remove the spaces of a string using Velocity?
>
> For instance, the following string "Remove   All Spaces From This
> String" must read "RemoveAllSpacesFromThisString".
>
> Thank you so much,
>
> Ricardo
>

I think you can just write:

$string.replace(" ", "")


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...


Re: remove spaces

by [Ricardo Rodríguez] :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Jonathan Revusky wrote:
> I think you can just write:
>
> $string.replace(" ", "")

It did the trick! Thank you so much,

Ricardo

--
Ricardo Rodríguez
Your EPEC Network ICT Team


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...