如何让正则表达式忽略 URL 字符串?

发布于 2024-08-15 04:27:32 字数 474 浏览 6 评论 0原文

我有以下正则表达式,通过用分号分隔字符串来创建值的哈希值:

Hash["photo:chase jarvis".scan(/(.*)\:(.*)/)] 
// {'photo' => 'chase jarvis'}

但我也希望能够在字符串中包含 URL 并识别它,以便它在哈希值一侧维护 URL 部分,即:

Hash["photo:http://www.chasejarvis.com".scan(/(.*)\:(.*)/)] 
// Results in {'photo:http' => '//www.chasejarvis.com'}

我当然想要:

Hash["photo:chase jarvis".scan(/ ... /)] 
// {'photo' => 'http://www.chasejarvis.com'}

I have the following Regexp to create a hash of values by separating a string at a semicolon:

Hash["photo:chase jarvis".scan(/(.*)\:(.*)/)] 
// {'photo' => 'chase jarvis'}

But I also want to be able to have URL's in the string and recognize it so it maintains the URL part in the value side of the hash i.e:

Hash["photo:http://www.chasejarvis.com".scan(/(.*)\:(.*)/)] 
// Results in {'photo:http' => '//www.chasejarvis.com'}

I want, of course:

Hash["photo:chase jarvis".scan(/ ... /)] 
// {'photo' => 'http://www.chasejarvis.com'}

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

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

发布评论

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

评论(2

走过海棠暮 2024-08-22 04:27:32

如果您只想匹配第一个冒号,可以将 (.*)\:(.*) 更改为 ([^:]*)\:(.*)

或者,您可以使其成为非贪婪匹配,但我更喜欢说“不是冒号”。

If you only want to match up to first colon you could change (.*)\:(.*) to ([^:]*)\:(.*).

Alternatively, you could make it a non-greedy match, but I prefer saying "not colon".

羁〃客ぐ 2024-08-22 04:27:32

如何查出一个人的姓氏和名字?

chasejarvis 更改为 chasejarvis 可能无法实现,除非您有解决方案。

您已经知道项目中每个人的名字了吗?没有人拥有像 charvisdjarvis 这样的中间名首字母(假设名字是“Charvis D. Jarvis”。)?

How do figure out a person's family name and first name?

Changing chasejarvis to chase and jarvis might not be possible unless you have a solution for that.

Do you already know everyone's name in your project? Nobody is having the initial of a middle name like charvisdjarvis (assuming the name is "Charvis D. Jarvis".)?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文