php 正则表达式和汉字
我试图从其中提取日期“25/01/2005”、公司名称“A One Investment Company Limited 大一投资有限公司”、中文名称“大一投资有限公司”和许可证号“ABG896”这个字符串:
名称:A One Investment Company Limited 大一投资有限公司(ABG896) 许可证日期:25/01/2005 备注
但是我不知道如何将包括中文符号在内的所有数据提取到数组中。
I'm trying to extract the date "25/01/2005", the company name "A One Investment Company Limited 大一投資有限公司", the Chinese name "大一投資有限公司" and the licence number "ABG896" from this string:
Name: A One Investment Company Limited 大一投資有限公司(ABG896) Date of Licence: 25/01/2005 Remarks
However I have no idea how to extract all the data INCLUDING the chinese signs into an array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的字符串编码为 utf-8,请设置
/u
模式并使用\p{L}
匹配 unicode 字母或使用\X
作为.
的替代品。请注意,\X
匹配换行符,而.
则不匹配。请参阅此页面了解更多详细信息。
If your string is encoded as utf-8, set
/u
mode and use\p{L}
to match unicode letters or use\X
as a replacement for.
. Note that\X
matches newlines, whereas.
does not.See this page for further details.