IsValidURL
Last updated
Was this helpful?
The IsValidURL() function checks whether the input value has a valid URL format.
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Returns true if URLhas indeed a valid URL format.
Returns false if URL doesn't have a valid URL format.
IsValidURL(URL)IsValidUrl("https://wem.io")
👍Result: True
IsValidUrl("hssp:\vvv.abcd.org/")
👎Result: False
URL
text
☑️
the URL that the function validates.
Last updated
Was this helpful?
Was this helpful?