For example I have text:
"testestestestt testestestes <img src='image.jpg'>"
I want to write function which check if in string is img tag and return true
|
For example I have text:
I want to write function which check if in string is |
|||
|
|
using regex:
|
|||
|
|
|
You can go for And here is your function:
jsBin demo function |
|||||
|
|
|||||||
|
|
Obviously, regular expressions are not recommend for parsing HTML, however, depending on the way you are using this, you may want to be assured that the
Matched Test Cases:
Unmatched Test Cases:
Once you match it you can easily process it with an XML or HTML parser are then check if it has the |
|||||
|