如何计算 Perl 中 UTF-8 字符串的字符数?
我有一个包含英语和俄语字符的字符串。如何计算 Perl 中的字符数?
I have a string that contains both English and Russian characters. How can I count the number of characters in Perl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果从文件中读取字符串,则应将其读取为 utf-8
If you read string from file, you should read it as utf-8
只需使用编码:
Just use Encode :