Regular expressions (regex) are a powerful way to manipulate text using set patterns. In this regex tutorial, we will be discussing how to match URLs with regex.
The regex we will be looking at for matching URLs is:
(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$