string 공백 제거 , preg_replace , trim > 기술자료 | 해피정닷컴

string 공백 제거 , preg_replace , trim > 기술자료

본문 바로가기

사이트 내 전체검색

string 공백 제거 , preg_replace , trim > 기술자료

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

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 79 페이지
  • RSS
기술자료 목록
1081
PHP   21798  2012-03-16 23:55 ~ 2014-12-28 00:00  
1080
Adobe   20279  2012-03-16 17:16  
1079
HTML   15000  2012-03-16 17:10  
1078
ClassicASP   12068  2012-03-15 02:08  
1077
ClassicASP   21720  2012-03-15 01:58 ~ 2016-10-21 00:00  
1076
ClassicASP   25027  2012-03-15 00:08 ~ 2016-02-29 00:00  
1075
JavaScript   15990  2012-03-12 23:33  
1074
PHP   22871  2012-03-04 17:29  
1073
PHP   21778  2012-03-04 17:09 ~ 2023-01-08 11:38  
1072
Linux   18298  2012-03-02 18:38  
1071
전자결제   12264  2012-03-02 14:34  
1070
영카트   12820  2012-03-02 13:03  
열람
PHP   27540  2012-03-01 21:47 ~ 2012-04-08 00:00  
1068
MySQL   17887  2012-02-29 22:30  
1067
그누보드   11525  2012-02-27 14:09  
1066
ClassicASP   34669  2012-02-21 00:14 ~ 2014-11-11 00:00  
1065
그누보드   15569  2012-02-12 23:59  
1064
Search   22561  2012-02-11 08:13 ~ 2022-04-15 19:42  
1063
PHP   15636  2012-02-11 08:05  
1062
그누보드   12486  2012-02-10 22:14 ~ 2016-11-21 00:00  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.