PHP string 공백 제거 , preg_replace , trim
페이지 정보
본문
preg_replace : 문자 사이의 공백을 모두 제거 합니다.(단 는 제거 못합니다.)
<?php
//공백 제거
$in =" tood net ";
$out = preg_replace("/\s+/","",$in);
echo $out
?>
결과
toodnet
trim()
이 함수는 문자열의 처음과 끝에 있는 공백문자를 제거하고 이 문자열을 반환한다.
공백문자라 함은 "\n", "\r", "\t", "\v", "\0", 그리고 공백을 말한다.
<?php
$text1 = "\t\tThese are a few words :) ... ";
$text2 = "\x09Example string\x0A";
$text3 = "Hello World";
echo "text1 = '". $text1 ."'<br />";
echo "text2 = '". $text2 ."'<br />";
echo "text3 = '". $text3 ."'<br />";
$trimmed = trim($text1);
echo "trimmed = '". $trimmed . "'<br />";
$trimmed = trim($text1," \t.");
echo "trimmed = '". $trimmed . "'<br />";
$trimmed = trim($text3, "Hdle");
echo "trimmed = '". $trimmed . "'<br />";
$trimmed = trim($text3, 'HdWr');
echo "trimmed = '". $trimmed . "'<br />";
$trimmed = trim($text2,"\x00..\x1F");
echo "trimmed = '". $trimmed . "'<br />";
// trim the ASCII control characters at the beginning and end of $binary
// (from 0 to 31 inclusive)
?>
원본
text1 = ' These are a few words :) ... '
text2 = ' Example string '
text3 = 'Hello World'
결과
trimmed = 'These are a few words :) ...'
trimmed = 'These are a few words :)'
trimmed = 'o Wor'
trimmed = 'ello Worl'
trimmed = 'Example string'
관련자료
http://php.net/manual/en/function.trim.php
http://togreat.egloos.com/2401996
http://daybrush.com/?document_srl=16718
http://blog.daum.net/newing99/7
<?php
//공백 제거
$in =" tood net ";
$out = preg_replace("/\s+/","",$in);
echo $out
?>
결과
toodnet
trim()
이 함수는 문자열의 처음과 끝에 있는 공백문자를 제거하고 이 문자열을 반환한다.
공백문자라 함은 "\n", "\r", "\t", "\v", "\0", 그리고 공백을 말한다.
<?php
$text1 = "\t\tThese are a few words :) ... ";
$text2 = "\x09Example string\x0A";
$text3 = "Hello World";
echo "text1 = '". $text1 ."'<br />";
echo "text2 = '". $text2 ."'<br />";
echo "text3 = '". $text3 ."'<br />";
$trimmed = trim($text1);
echo "trimmed = '". $trimmed . "'<br />";
$trimmed = trim($text1," \t.");
echo "trimmed = '". $trimmed . "'<br />";
$trimmed = trim($text3, "Hdle");
echo "trimmed = '". $trimmed . "'<br />";
$trimmed = trim($text3, 'HdWr');
echo "trimmed = '". $trimmed . "'<br />";
$trimmed = trim($text2,"\x00..\x1F");
echo "trimmed = '". $trimmed . "'<br />";
// trim the ASCII control characters at the beginning and end of $binary
// (from 0 to 31 inclusive)
?>
원본
text1 = ' These are a few words :) ... '
text2 = ' Example string '
text3 = 'Hello World'
결과
trimmed = 'These are a few words :) ...'
trimmed = 'These are a few words :)'
trimmed = 'o Wor'
trimmed = 'ello Worl'
trimmed = 'Example string'
관련자료
http://php.net/manual/en/function.trim.php
http://togreat.egloos.com/2401996
http://daybrush.com/?document_srl=16718
http://blog.daum.net/newing99/7
댓글목록
등록된 댓글이 없습니다.