mb_split — 정규식을 사용하여 멀티 바이트 문자열 분리
설명 ¶
array mb_split ( string $pattern , string $string [, int $limit = -1 ] )
정규식 패턴을 사용하여 멀티 바이트 문자열을 분할하고 결과를 배열로 반환합니다.
인수 ¶
pattern
정규식 패턴
string
분리되는 문자열
limit
선택적 매개 변수 제한이 지정되면 최대 제한 요소로 분할됩니다
반환값 ¶
결과는 배열입니다.
<?php
function mbStringToArray ($string) {
$strlen = mb_strlen($string);
while ($strlen) {
$array[] = mb_substr($string,0,1,"UTF-8");
$string = mb_substr($string,1,$strlen,"UTF-8");
$strlen = mb_strlen($string);
}
return $array;
}
?>
up
down
23 boukeversteegh at gmail dot com ¶5 years ago
The $pattern argument doesn't use /pattern/ delimiters, unlike other regex functions such as preg_match.
<?php
# Works. No slashes around the /pattern/
print_r( mb_split("\s", "hello world") );
Array (
[0] => hello
[1] => world
)
# Doesn't work:
print_r( mb_split("/\s/", "hello world") );
Array (
[0] => hello world
)
?>
2016/11/10 - [IT/php] - php mb_convert_case 대문자변환 소문자변환 인코딩
2016/11/10 - [IT/php] - php mb_strtoupper 대문자변환
'IT > php' 카테고리의 다른 글
php mb_stripos — 대 / 소문자를 구별하지 않고 첫 번째 문자열의 위치를 찾습니다. (0) | 2016.11.14 |
---|---|
php mb_ereg — 멀티 바이트 지원과의 정규식 일치 (0) | 2016.11.13 |
php mb_convert_case 대문자변환 소문자변환 인코딩 (0) | 2016.11.10 |
php mb_strtoupper 대문자변환 (0) | 2016.11.10 |
php mb_strtolower 소문자변환 (0) | 2016.11.10 |