in reply to Thanks !! (Re: How to ignore/replace all whitespaces,tab spaces, new line from a given string in REGEX ??)
in thread How to ignore/replace all whitespaces,tab spaces, new line from a given string in REGEX ??
$name =~ s/^\s+//; $name =~ s/\s+$//;
|
|---|