I want to replace this string The first word 1/4W may be different The character W it may be an upper case or a lower case
<?php
$str="1/4W this is string"; // 1/4W can be 1/16W, 1/2W, 1W,2w
$str=preg_replace(("/^\d.W/", "", $str);
var_dump($str);
I have tested but I think it is not exact