Java 1.4.2 中 Pattern.quote() 的等价物是什么
Java 1.4.2 中 Pattern.quote 的等价物是什么?
我在 URI 上使用 Pattern.quote() 但现在需要使其兼容 1.4.2。
What would be a Java 1.4.2 equivalent of Pattern.quote?
I was using Pattern.quote() on a URI but now need to make it 1.4.2 compatible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
那么
Pattern.quote
的源代码是可用的,如下所示:基本上它依赖
于字符串中存在
\E
的情况,并对这种情况进行了特殊处理。Well the source code of
Pattern.quote
is available and looks like this:Basically it relies on
and has a special treatement of the case in which
\E
is present in the string.这是引用的代码:
似乎不是您自己硬复制或实现的,或者?
编辑:aiobee 更快,sry
This is the code of quote:
Seems not hard copying or implementing by your self or?
Edit: aiobee was faster, sry
这是 GNU 类路径实现(以防 Java 许可证让您担心):
Here's the GNU Classpath implementation (in case the Java license worries you):