Project

General

Profile

$countcs » History » Version 4

Per Amundsen, 08/12/2015 09:38 AM

1 1 Per Amundsen
_Added in 1.8.10_
2
3
*$countcs(string,substring,substring2,...,substringN)*
4
5
Returns the number of times substring occurs in string.
6
7 2 Per Amundsen
_[[$countcs]] is case-sensitive, see [[$count]] for case-insensitive version._
8 1 Per Amundsen
9
*Parameters*
10
11
string - The string to search for.
12
substring,substring2,...,substringN - Substrings to search.
13
14
*Example*
15
16
<pre>
17 4 Per Amundsen
; Count number of times 'A' appears in 'Aaa'.
18 2 Per Amundsen
//echo -ag $countcs(Aaa,A)
19 1 Per Amundsen
20 4 Per Amundsen
; Count number of times 'a' appears in 'Aaa'.
21 2 Per Amundsen
//echo -ag $countcs(Aaa,a)
22 1 Per Amundsen
</pre>