我想在网址中获取以下内容: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的新手,任何想法都会受到我的赞赏。感谢
答案 0 :(得分:0)
Pattern regex = Pattern.compile("http://www\\.house-for-(.*?)\\.com", Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE);