ABAP Keyword Documentation → ABAP - Reference → Processing Internal Data → Character String and Byte String Processing → Expressions and Functions for String Processing → String Functions → Description Functions for Character-Type Arguments
count, count_... - Search Functions
Other versions: 7.31 | 7.40 | 7.54
Syntax Forms
-
... count( val = text {sub = substring}|{regex = regex} [case = case]
[off = off] [len = len] ) ... -
... count_any_of( val = text sub = substring
[off = off] [len = len] ) ... -
... count_any_not_of( val = text sub = substring
[off = off] [len = len] ) ...
Effect
Just like the search functions find
and find_...
, the search
functions count
and count_...
search
text
in the entire string
text or in a subarea defined using
off and len
for characters specified in substring
or for a match with a
regular expression
specified in regex
. Instead of an offset, they return the number of occurrences.
The return value has the type i
.
Example
Refer to string functions, count
, find
, and match
.
Exceptions
Catchable Exceptions
CX_SY_RANGE_OUT_OF_BOUNDS
-
Cause: Illegal offset or length specification in the
off
andlen
.
Runtime Error:STRING_OFFSET_TOO_LARGE
CX_SY_REGEX_TOO_COMPLEX
-
Cause: More information: Exceptions in Regular Expressions.
Runtime Error:REGEX_TOO_COMPLEX
CX_SY_STRG_PAR_VAL
-
Cause: Substring in
sub
or regular expression inregex
is empty or occurrence inocc
is 0.
Runtime Error:STRG_ILLEGAL_PAR