Is a particular url valid? The following regexp will let you know.
/^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \?=.-]*)*\/?$/
Is a particular url valid? The following regexp will let you know.
/^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \?=.-]*)*\/?$/
REGEX – Find all CSS attributes
This regexp will find CSS attributes, such as background:red; or padding-left:25px;. [php] \s(?[a-zA-Z-]+)\s[:]{1}\s*(?[a-zA-Z0-9\s.#]+)[;]{1} [/php] ...