What I would like to do is to search for all characters that exist between Alt0128 to Alt0255 in the ISO8859-1 character map.
I would prefer to search by the Alt key if possible.
I know I should be using something similar to the following
preg_match_all("/[A-Za-z0-9]/",$line1,$chars1);
but I want to replace A-Za-z0-9 with Alt0128-Alt0255
Hopefully I am explaining myself properly.
Thanking in advance for any help received
I would prefer to search by the Alt key if possible.
I know I should be using something similar to the following
preg_match_all("/[A-Za-z0-9]/",$line1,$chars1);
but I want to replace A-Za-z0-9 with Alt0128-Alt0255
Hopefully I am explaining myself properly.
Thanking in advance for any help received