我正在创建一个只能接受两种类型网址的验证表单。 这些网址必须是租金或销售网址。我的例子是:
http://www.rightmove.co.uk/property-for-sale/property-38983423.html http://www.rightmove.co.uk/property-to-rent/property-39474762.html
我目前有一个RegEx表达式,用于查找销售网址:
/http:\/\/(www\.)(rightmove\.)(co\.)(uk\/)(property-for-sale\/)(property-)[0-9]{8}(\.html)/g
我无法尝试编写RegEx表达式来查找销售或租借网址。我是RegEx的新手,所以这对我来说很难。我知道我必须使用|操作员,但我不知道如何写它。
答案 0 :(得分:1)
替换
property-for-sale\/
使用
property-(?:for-sale|to-rent)\/