标签: perl
我有一个看起来像这样的字符串......
“ http://www.example.com/ 为例.pdf“
“ http://www.example.com/
为例.pdf“
我需要删除空格和换行符。我该怎么做呢?我的结果应该是
"http://www.example.com/example.pdf"
答案 0 :(得分:19)
只需使用s///替换运算符:
s///
$string =~ s/\s+//g;
\s character class匹配空格字符集[\ \t\r\n\f]和其他字符。
\s
[\ \t\r\n\f]
答案 1 :(得分:0)
while (<>) { s/\s+//g; print; }