javier wrote:
> It sounds a bit stupid but I don't know the way to
> remove white spaces in a
> string.
> 
> $string = "No sé como quitar los putos spacios";
> and now?

$string =~ s/ //g;

Here's one way to do it.

=====
Dave Hoover
"Twice blessed is help unlooked for." --Tolkien
http://www.redsquirreldesign.com/dave

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to