$string = "<math>var:a[actions]</math> килограмм яблок стоит <math>anything[]</math> руб. Сколько будет будет стоить <math>anything</math> килограмм(а, ов) яблок?";
preg_match_all('#<math>(.*?)</math>#', $string, $matches);
var_dump($matches);
/([a-zA-Z]+)\s(\d{1,2}),\s(\d{4})/g
$text = 'СЧЕТУ 555 ОТ 01.01.2019, счету 556 ОТ 01.01.2019';
preg_match_all('/счету\s(\d+)\s/ui', $text, $matches);
print(implode(', ', $matches[1]));
string Replace()
{
return Regex.Replace(textBox1.Text, @"(.)(.)", "$1");
}
/\/start ([^_\r\n\t\f\v\s]*)(?:_(\S+))?/
/\/start ([^_\r\n\t\f\v\s]*)(?:_(review))?/
s.match(/bb\ncc/gm);
var re = /bb\ncc/gm, match;
while (match = re.exec(s)) {
console.log(match);
}