I am working on web-project with several languages: each HTML text inside a tag must be wrapped inside a <?php echo _("..."); ?> so :
<div>My text</div> transforms into <div><?php echo _("My text"); ?></div>
The fact is I want to track the huge amount of these occurrences of text in order to transform it into texts wrapped by a 'php echo'?. Does it exist a regex to track these occurrences?