Is there a way to write a wildcard expression to match a URL whether it begins with http:// or https:// ? I'm looking for options so I don't have to have duplicate list entries for these types of things.
I know you can do http*://<URL> however, is there a way to match specifically "s" or "no s" directly after the http?
Solved! Go to Solution.
Hi,
see Best Practices: Creating URL related list entries section "URL using matches in list". In short: regex(htt(p|ps)://www.site.com)
Property matches regex((http|ftp|https):\/\/.*)
best,
Michael
Hi,
see Best Practices: Creating URL related list entries section "URL using matches in list". In short: regex(htt(p|ps)://www.site.com)
You can also do:
regex(https?://<url>)
This is slightly more efficient for https URLs than some of the other suggestions. Same level of efficiency for http URLs.
Corporate Headquarters
6220 America Center Drive
San Jose, CA 95002 USA