加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

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

发布时间:2020-12-15 21:29:40 所属栏目:大数据 来源:网络整理
导读:如何比较Perl中的两个字符串? 我正在学习Perl,我有这个基本的问题在StackOverflow上找到这里,发现没有好的答案,所以我想我会问。 解决方法 参见 perldoc perlop.使用lt,gt,eq,ne和cmp适用于字符串比较: Binary eq returns true if the left argument
如何比较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.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读