🟧IsURL

Allows you to check if the http/https string is a link.

string.IsURL( string str ) -> boolean

Usage Example

print( string.IsURL( "https://pika-soft.ru/" ) )
-- true

print( string.IsURL( "hello world" ) )
-- false

Last updated