Check if string is a URL?

var isURL: Boolean = myString.substr(0, 7) == "http://" && myString.length > 7;

Best of both worlds :slight_smile: