![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
Answer: How do I remove whitespace at the beginning or end of my string?by vroom (Pope) |
on Jan 21, 2000 at 00:45 UTC ( #2259=categorized answer: print w/replies, xml ) | Need Help?? |
Q&A > regular expressions > How do I remove whitespace at the beginning or end of my string? - Answer contributed by vroom
Use substitution along with the special characters ^ and $ which match the beginning and end of strings respectively along with \s which matches whitespace;
Edited by davido: Removed useless use of /g modifier.
|
|