使用Regex提取css文件名

时间:2014-07-22 19:49:03

标签: .net regex

我希望使用RegEx

从此字符串中获取style.css

http://domain.net/jitwp/wp-content/themes/strappress/style.css?ver=3.1.1

到目前为止,我已经尝试了\/(?:.(?!\/)),但它获得了/style.css?ver=3.1.1。我不确定如何忽略最后的查询字符串或跳过正斜杠。

2 个答案:

答案 0 :(得分:2)

您可以使用以下正则表达式:

[^/]+\.css

或使用与单词字符匹配的\w

\w+\.css

Live Demo

答案 1 :(得分:1)

如果我是你,我会使用以下正则表达式

[\w_\-]+\.css

因为以下内容包括空格字符

[^/]+\.css