Groups multiple tokens together without creating a capturing group. This allows you to apply quantifiers to the full group.
Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1747"></script>
Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/1329"></script>
Une option toute bête pour grep qui permet d'afficher en couleur l'expression recherchée dans le résultat. Ca ne casse pas trois pattes à un canard mais c'est sympa.
Cela permet aussi de voir sur quelle partie du résultat, le match de l'expression s'est faite. C'est bien pour progresser et comprendre les regexp.
grep --color EXPRESSION [FICHIER]
Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/758"></script>
$foo =
strip_tags($source,
'<body>, <a>, <br>, <strong>, <b>, <i>, <em>, <font>');
ereg ("<body([^>.]+)>(.+)</body>",
$foo,
$regs);
Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/349"></script>