3v4l.org

run code in 300+ PHP versions simultaneously
<?php $input = "56s/62b/56b - 42b/45b/26s"; $input = "56s/62b/56b-42b/45b/26s"; $input = str_replace("-", "/", $input); $input = "/".$input."/"; echo $input; // preg_match("/(?<=#).*?(?=#)/", "1232#hello world#", $match); // preg_match("/(?<=\/).*?(?=#)/", "1232#/hello world#", $match); // preg_match("/(?<=\/).*?(?=(\/|\-))/", $input, $match); // preg_match("/(?<=\/)(.*)(?=\/)/", $input, $match); preg_match_all("/(?<=\/)(.*)(?=\/)/", $input, $match); print_r($match) // preg_match("/^.+?\](.+)$/is" , $string_text, $match); ?>

preferences:
39.43 ms | 402 KiB | 5 Q