I need to remove non-alphanumeric characters from between two strings using PHP.
Input:
name="K9 Mk. II"
built=2015.06.15
name="Queen Eliz. 3rd (HRH)"
Expected output:
name="K9MkII"
built=2015.06.15
name="QueenEliz3rdHRH"
My code:
$contents = file_get_contents("input.txt");
$contents = preg_replace('/name=\"[^A-Za-z0-9]\"/', "name=\"\\1\"", $contents);
Edit: it should only remove unwanted characters from between name=" and ". The line containing built=2015.06.15 should remain unchanged.
As always, your help is greatly appreciated.
WtS
Use preg_replace_callback:
Output: