|
|
| Keep It Simple, Stupid | |
| PerlMonks |
Answer: How do I remove whitespace at the beginning or end of my string? |
| ( #90067=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? contributed by Maestro_007
Try this, it's a little different, though it only works on leading whitespace:
<paraphrase> It uses the \G anchor with the /g flag to start where the previous match left off, replacing spaces with nothing as it goes along. </paraphrase> It's from p. 245 of Effective Perl Programming by Joseph N. Hall and Randal Schwartz (merlyn). Randal, if there's a problem with me quoting this stuff, just let me know.
|
|
||||||||||||||||||