文本、数字和小数的正则表达式
我正在尝试获取文本、小数和小数的正则表达式。表达式必须同时匹配所有内容。
主要问题是我必须为 Zend_Search_Lucene 编写一个分析器才能搜索十进制数字。现在我只能搜索文本和数字。所以我猜它会匹配十进制数字以使其成为标记,从而成为有问题的正则表达式。
I am trying to get a regular expression for text, decimals and decimal numbers. The expression must match all at once.
The main problem is that I had to write an Analyzer for Zend_Search_Lucene in order to be able to search for decimal digits. Right now I can only search for texts and numbers. So I guess it to match decimal numbers to make them tokens and thus the regular expression in question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,现在我觉得很愚蠢,但无论如何。我终于得到了我想要的。 [a-zA-Z0-9.]+ 就成功了。想象一下那有多短。
Okay now i feel stupid but anyways. I finally got what I wanted. This, [a-zA-Z0-9.]+ did the trick. imagine how short that was.