here is the code i am using to validate my hyperlink field for non-hyperlink field
f(
!( IsMatch(
myhyperlink.Text,
"(?:http(s)?:\/\/)?[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~:/?#[\]%@!\$&’\(\)\*\+,;=.]+$"
)),
Reset(myhyperlink);
)
but it doesn't reset the value if someone put a random text like
adfasfas.com
if you just add .com at the end of any text it validates it correct but the list doesn't submit the item.
what is the best regex for the full valid URL

Report
All responses (
Answers (