I need to count the occurrences of these characters (most of them must be escaped) in a given string:
[ // to be escaped
\ // to be escaped
] // to be escaped
^ // to be escaped
{ // to be escaped
| // to be escaped
} // to be escaped
~
€
So i ended up with this pattern: '/[\[|\]|€\{|}|\\|\^|\||~]/u', hoping it's right (unfortunately i'm not so good in regex, need to study much more). Anyway, the result of:
$arr = array();
$string = 't€s||t] st^_^ring[}}';
preg_match_all('/[\[|\]|€\{|}|\\|\^|\||~]/u', $string, $arr);
is kinda this:
array
0 =>
array
0 => string '€' (length=3)
1 => string '|' (length=1)
2 => string '|' (length=1)
3 => string ']' (length=1)
4 => string '^' (length=1)
5 => string '^' (length=1)
6 => string '[' (length=1)
7 => string '}' (length=1)
8 => string '}' (length=1)
And i don't know how to interpret it. Can i simply count($result[0])? Is there a more reliable way?
count($result[0])should do just fine. Don't see why it wouldn't be reliable. – Rick Kuipers Mar 27 '12 at 13:400index? I'm asking because don't know if i can rely upon that index. – Gremo Mar 27 '12 at 13:41