perl字符串转义 [英] perl string escape

查看:123
本文介绍了perl字符串转义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我希望避免使用正则表达式并安装额外的模块。

解决方案

使用 quotemeta 可能会帮助您。

 我的$ escaped = quotemeta $ string_with_quotes_and_spaces; 

它将以反斜杠转义任何不是字母数字或下划线的任何东西。


I wish to escape special characters susch as quotes and spaces in a Perl string.

I'd like to avoid using regex and installing extra modules.

解决方案

Using quotemeta may help you.

my $escaped = quotemeta $string_with_quotes_and_spaces;

which will escape with a backslash anything that isn't alphanumeric or an underscore.

这篇关于perl字符串转义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆