I want to match n number of characters between a "<" and ">" characters. For example,
I want to be able to match <a href = "image1.jpg"> or
<a href = " http://www.learnmore.com/> essentially with the same pattern. This is because, the strings I receive might have n number of characters between the special characters. Once I match the pattern which includes the special characters, I will replace it with a blank space(which I am able to do currently---the replacing part.). I need help with the matching part only.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
Obligatory "don't try to parse HTML with regex" link |
|||
|
|
|
You can try the following regular expression
to match against your string (assuming the |
|||
|
|
First replace |
|||
|
|