使用Regex在URL中获取文本

时间:2014-04-16 08:33:34

标签: html regex url

我想在网址中获取以下内容:http://www.house-for-rent-one.com,使用正则表达式获取“租金 - 一”这是我到目前为止所尝试的内容:

static readonly Regex Regex = new Regex(http://www.house-for-(?<getName>[A-Z-.]+).com, RegexOptions.Compiled | RegexOptions.IgnoreCase);

但它对我的情况不起作用,因为我是Regex的新手,任何想法都会受到我的赞赏。感谢

1 个答案:

答案 0 :(得分:0)

Pattern regex = Pattern.compile("http://www\\.house-for-(.*?)\\.com", Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE);