mb_ereg_search_pos
Description
The mb_ereg_search_pos of Multibyte String for PHP returns position and length of a matched part of the multibyte regular expression for a predefined multibyte string.
Syntax
mb_ereg_search_pos( ?string $pattern = null, ?string $options = null ): array|false
Parameters
pattern
The search pattern.
options
The search option.
Option | Description |
---|---|
i | Ambiguity match on |
x | Enables extended pattern form |
m | '.' matches with newlines |
s | '^' -> '\A', '$' -> '\Z' |
p | Same as both the m and s options |
l | Finds longest matches |
n | Ignores empty matches |
Return
An array containing two elements. The first element is the offset, in bytes, where the match begins relative to the start of the search string, and the second element is the length in bytes of the match.
If an error occurs, false is returned.
Examples
1 · void
<? $string = '🐘string'; $pattern = '🐘(st(r(i)ng))'; mb_ereg_search_init($string, $pattern); $return = mb_ereg_search_pos(); var_export($return); ?>
array ( 0 => 0, 1 => 10, )
2 · pattern
<? $string = '🐘string'; mb_ereg_search_init($string); $pattern = '🐘(st(r(i)ng))'; $return = mb_ereg_search_pos($pattern); var_export($return); ?>
array ( 0 => 0, 1 => 10, )
3 · options · i
<? $string = '🐘string'; mb_ereg_search_init($string); $pattern = '🐘STRING'; $options = 'i'; $return = mb_ereg_search_pos($pattern, $options); var_export($return); ?>
array ( 0 => 0, 1 => 10, )
4 · options · x
<? $string = '🐘string'; mb_ereg_search_init($string); $pattern = '🐘 s t r i n g'; $options = 'x'; $return = mb_ereg_search_pos($pattern, $options); var_export($return); ?>
array ( 0 => 0, 1 => 10, )
5 · options · m
<? $string = ' 🐘string'; mb_ereg_search_init($string); $pattern = '.🐘string'; $options = 'm'; $return = mb_ereg_search_pos($pattern, $options); var_export($return); ?>
array ( 0 => 0, 1 => 11, )
6 · options · s
<? $string = '🐘string'; mb_ereg_search_init($string); $pattern = '^🐘string$'; $options = 's'; $return = mb_ereg_search_pos($pattern, $options); var_export($return); ?>
array ( 0 => 0, 1 => 10, )
7 · options · p
<? $string = ' 🐘string'; mb_ereg_search_init($string); $pattern = '^.🐘string$'; $options = 'p'; $return = mb_ereg_search_pos($pattern, $options); var_export($return); ?>
array ( 0 => 0, 1 => 11, )
8 · options · l
<? $string = '🐘stringtring'; mb_ereg_search_init($string); $pattern = '🐘.*tring'; $options = 'l'; $return = mb_ereg_search_pos($pattern, $options); var_export($return); ?>
array ( 0 => 0, 1 => 15, )
9 · options · n
<? $string = '🐘string'; mb_ereg_search_init($string); $pattern = ''; $options = 'n'; $return = mb_ereg_search_pos($pattern, $options); var_export($return); ?>
false
Links
Multibyte String
- mb_check_encoding
- mb_chr
- mb_convert_case
- mb_convert_encoding
- mb_convert_kana
- mb_convert_variables
- mb_decode_mimeheader
- mb_decode_numericentity
- mb_detect_encoding
- mb_detect_order
- mb_encode_mimeheader
- mb_encode_numericentity
- mb_encoding_aliases
- mb_ereg
- mb_ereg_match
- mb_ereg_replace
- mb_ereg_replace_callback
- mb_ereg_search
- mb_ereg_search_getpos
- mb_ereg_search_getregs
- mb_ereg_search_init
- mb_ereg_search_regs
- mb_ereg_search_setpos
- mb_eregi
- mb_eregi_replace
- mb_get_info
- mb_http_input
- mb_http_output
- mb_internal_encoding
- mb_language
- mb_list_encodings
- mb_ord
- mb_output_handler
- mb_parse_str
- mb_preferred_mime_name
- mb_regex_encoding
- mb_regex_set_options
- mb_scrub
- mb_send_mail
- mb_split
- mb_str_pad
- mb_str_split
- mb_strcut
- mb_strimwidth
- mb_stripos
- mb_stristr
- mb_strlen
- mb_strpos
- mb_strrchr
- mb_strrichr
- mb_strripos
- mb_strrpos
- mb_strstr
- mb_strtolower
- mb_strtoupper
- mb_strwidth
- mb_substitute_character
- mb_substr
- mb_substr_count