Other Resources:
Web address URL validation
How to perform a validation on Web address URLs using a regular expression? For example, "http://regex.fyicenter.com/" is a valid Web address URL.
✍: Guest
![]()
To perform a basic validation on Web address URLs, try this regular expression:
^https?:\/\/([A-Z0-9][-\w]*(\.[A-Z0-9][-\w]*)+):?(\d+)?\/?
2013-01-27, 0👍, 0💬
Popular Posts:
How to write a regular expression to parse key-value entries from Windows .INI files? Here is an exa...
All credit card numbers issued by American Express must start with 34 or 37 and have 15 digits. For ...
A free online regular expression test tool that allows to try you regular expression pattern and see...
How to write a regular expression to validate GUID (Globally Unique IDentifier) or UUID (Universally...
Are you having problems using regular expressions when processing text strings in your applications ...