3v4l.org

run code in 300+ PHP versions simultaneously
<?php $filename = '1234_56_78 A_FAIRLY_SHORT_TITLE_D.pdf'; $filename = preg_replace('/\\.[^.\\s]{3,4}$/', '', $filename); $parts = preg_split( "(_| )", $filename ); $project_no = $parts[0]; $series_no = $parts[1]; $sheet_no = $parts[2]; $revision = end($parts); $title = implode(' ',\array_diff_key($parts, array_flip([0,1,2,count($parts)-1]))); echo $title;
Output for 7.2.0 - 7.2.34, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.13
A FAIRLY SHORT TITLE

preferences:
139.68 ms | 407 KiB | 5 Q