I'm searching for a Regexp that recognizes the following pattern: <br id="(any id)BrZ". This is my first Regexp so I have zero experience. '<br id="' and 'BrZ' have to appear in that exact order, only the number before BrZ should be variable. An example for a string that should be recognized is . On the other side, is an example for one that shouldn't match. My idea was
Variable.split('/<br id="[0-9]+BrZ">/');
but that doesn't work.
Thanks in advance.