the regular expression field actually gives you unlimited customization.
/[0-9a-zA-Z]{6,}/
This checks for numbers or text of minimum length of 6 characters. You can pretty do much any string checking with regex. Including making sure the user inputs a specific base URL instead of spam for example.