在 Perl 中翻译字符串
在 PHP 中, strtr
可以接受数组的输入并替换字符串中所有出现的键,并且将首先尝试最长的键。
Perl 中有等效的函数吗?
In PHP, strtr
can accept an input of array and replace all occurrence of key within the string, and the longest keys will be tried first.
Is there equivalant function in Perl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,简单的正则表达式:
Yep, simple regex:
使用 Data::Munge 的 list2re 函数,而不是手动构建正则表达式来评估像这样:
Rather than manually building up a regex to evaluate, use Data::Munge's list2re function like this: