检测字符串中的中文(多字节)字符
$str = "This is a string containing 中文 characters. Some more characters - 中华人民共和国 ";
如何从该字符串中检测到中文字符并打印以第一个字符开头并以“-”结尾的部分? (这将是“中文字符。更多字符-”)。
谢谢你!
$str = "This is a string containing 中文 characters. Some more characters - 中华人民共和国 ";
How do I detect chinese characters from this string and print the part which starts with the first character and ends with "-"? (it would be "中文 characters. Some more characters -").
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经使用 preg_match 和正则表达式解决了这个问题:
I've solved this problem using preg_match and regular expressions:
PHP 是否将其存储为 Unicode?如果是这样,最坏的情况是您可以逐个字符地遍历字符串,直到找到中文范围内的字符。
也看看PHP:Unicode - 手册
Is PHP storing this as Unicode? If so, at worst you could step through the string, character by character, until you hit those within the Chinese range.
Check this out too PHP: Unicode - Manual