<?php
//The hex codes are space, tab, line feed, vertical tab, form feed, carriage return
$whitespace ="";
$teststring = "Charité-Universitä; " ;
// $result = ereg ("[[:space:]]&([#]?[a-zA-Z0-9]*)?;", $teststring);
$teststring =ereg_replace("[[:space:]]\&([#]?[a-zA-Z0-9]*)?;"," \\0", $teststring);
echo $teststring;
//Prints Matches 11 characters
?>
//The hex codes are space, tab, line feed, vertical tab, form feed, carriage return
$whitespace ="";
$teststring = "Charité-Universitä; " ;
// $result = ereg ("[[:space:]]&([#]?[a-zA-Z0-9]*)?;", $teststring);
$teststring =ereg_replace("[[:space:]]\&([#]?[a-zA-Z0-9]*)?;"," \\0", $teststring);
echo $teststring;
//Prints Matches 11 characters
?>
No comments:
Post a Comment