From: <[EMAIL PROTECTED]>
> Regular Expressions: How can I indicate that the contents of a term
> (user input*) needs to be treated as 'non-operators/control characters'
> (as *word* to match in that exact way)?
> (* Because the term is a user's input I can't escape the control
> characters man
You can escape the control characters manualy ;)
$termWithOptionalBold=str_replace(array('.','\','$'
),array('\.','\\','\$' ), $termWithOptionalBold);
[EMAIL PROTECTED] wrote:
Regular Expressions: How can I indicate that the contents of a term
(user input*) needs to be treated as 'non-
I figured it out. Change the last line to
echo htmlspecialchars($b);
and you'll get the proper output.
Gerard Samuel wrote:
> Im trying to get a final output to be '' but Im unable to get
> working. Could someone point me where Im going wrong.
> Thanks
>
>
> $a = 'http://www.trini0.org";>';
3 matches
Mail list logo