微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何比较Perl中的两个字符串?

如何比较Perl中的两个字符串?

我正在学习Perl,我有这个基本的问题在StackOverflow上找到这里,发现没有好的答案,所以我想我会问。

解决方法

参见 perldoc perlop.使用lt,gt,eq,ne和cmp适用于字符串比较:

Binary eq returns true if the left argument is stringwise equal to the right argument.

Binary ne returns true if the left argument is stringwise not equal to the right argument.

Binary cmp returns -1,or 1 depending on whether the left argument is stringwise less than,equal to,or greater than the right argument.

Binary ~~ does a smartmatch between its arguments. …

lt,le,ge,gt and cmp use the collation (sort) order specified by the current locale if a legacy use locale (but not use locale ':not_characters') is in effect. See 07001. Do not mix these with Unicode,only with legacy binary encodings. The standard 07002 and 07003 modules offer much more powerful solutions to collation issues.

原文地址:https://www.jb51.cc/Perl/173585.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐