J
jared in ecs
Anyone who can help?
I need to get rid of the spaces from the contents of a varible.
example:
$title= stumble from grace //after it was extracted from afile using substitution
i need it to be like:
$title= stumblefromgrace
i tried using :
$title=~ s/\s//;
but it did not seem to work
I need to get rid of the spaces from the contents of a varible.
example:
$title= stumble from grace //after it was extracted from afile using substitution
i need it to be like:
$title= stumblefromgrace
i tried using :
$title=~ s/\s//;
but it did not seem to work