language: PHP (php 5.4.4)
date: 837 days 16 hours ago
link:
visibility: public
1
2
3
4
5
<?php
$text = '__This_is__ a __test__';
preg_match_all('/__(?:(?!__).)+__/', $text, $matches);
print_r($matches);
?>