I know that:
preg_replace('<br\s*\/?>', '', $string);
will remove all br tags from $string...
How can we remove all <br><br/><br />
tags only if they are in the very beginning of $string? ($string in my case is html code with various tags...)