Search found 1 match

by Prohaska
Sat Feb 13, 2021 9:02 am
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: PHP Escape sequences
Replies: 2
Views: 7423

Re: PHP Escape sequences

if you want to match a "*" character, you write "\*" in the pattern. This applies whether or not the following character would otherwise be interpreted as a meta-character, so it is always safe to precede a non-alphanumeric with "\" to specify that it stands for itself. In particular, if you want to ...