正则表达式语法 javafx

发布于 2024-11-02 19:13:57 字数 256 浏览 2 评论 0原文

一个愚蠢的问题,我不确定以下 javafx 正则表达式语法有什么问题。 Netbeans 抱怨整个正则表达式字符串中存在非法转义字符,

var pattern:String = "(\/S*)(ftp|http|https):\/\/(\w+:\{0,1\}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?";

非常感谢任何帮助。非常感谢。

干杯, 阿比

A silly question, I am not sure what is wrong in the following javafx regex syntax. Netbeans complains illegal escape character in whole of this regex string,

var pattern:String = "(\/S*)(ftp|http|https):\/\/(\w+:\{0,1\}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?";

Any help is greatly appreciated. Thanks a bunch.

Cheers,
Abi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

所有深爱都是秘密 2024-11-09 19:13:57

尝试使用 double \\ for \

var 模式:String = "(\\/S*)(ftp|http|https):\\/\\/(\\w+:\{0,1\}\\w* @)?(\\S+)(:[0-9]+)?(\\/|\\/([\\w#!:.?+=&%@!\-\\/]) )?”;

Try this double \\ for \

var pattern:String = "(\\/S*)(ftp|http|https):\\/\\/(\\w+:\{0,1\}\\w*@)?(\\S+)(:[0-9]+)?(\\/|\\/([\\w#!:.?+=&%@!\-\\/]))?";

白龙吟 2024-11-09 19:13:57

我假设你的问题在这里:

(\/S*)(ftp|http|https):\/\/(\w+:\{0,1\}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?
                                -------

我假设你想说的是可以有或没有“:”。因此,您不需要转义括号,即只需 :{0,1},但这只是 :?

所以我假设您的意思是:

(\/S*)(ftp|http|https):\/\/(\w+:?\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?

I assume your problem is here:

(\/S*)(ftp|http|https):\/\/(\w+:\{0,1\}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?
                                -------

I assume what you want to say is there can be a ":" or not. Therefor you don't need to escape the brackets, i.e. only :{0,1}, but this is simply :?

So I assume you mean:

(\/S*)(ftp|http|https):\/\/(\w+:?\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文