<?php function test(string $str): void { if (preg_match('~a|(u(x))|(v(y))~', $str, $matches) === 1) { var_dump($matches); } } test("vy");
You have javascript disabled. You will not be able to edit any code.