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 195건 6 페이지
  • RSS
기술자료 목록
95
PHP   21911  2012-03-16 23:55 ~ 2014-12-28 00:00  
94
PHP   22986  2012-03-04 17:29  
93
PHP   21901  2012-03-04 17:09 ~ 2023-01-08 11:38  
열람
PHP   27661  2012-03-01 21:47 ~ 2012-04-08 00:00  
91
PHP   15733  2012-02-11 08:05  
90
PHP   23766  2011-12-16 17:50 ~ 2017-12-01 23:10  
89
PHP   35610  2011-12-16 14:24  
88
PHP   14718  2011-12-16 11:56  
87
PHP   40062  2011-12-10 17:48 ~ 2011-12-17 00:00  
86
PHP   22330  2011-12-10 17:48  
85
PHP   18786  2011-11-28 08:46 ~ 2017-01-13 00:00  
84
PHP   16047  2011-08-15 20:08  
83
PHP   15520  2011-07-26 07:10  
82
PHP   25152  2011-06-12 20:30 ~ 2024-02-28 09:43  
81
PHP   29524  2011-04-20 19:59  
80
PHP   22681  2011-03-27 21:51  
79
PHP   19690  2011-02-24 16:10 ~ 2021-11-23 09:25  
78
PHP   27918  2010-09-24 20:57  
77
PHP   17584  2010-08-25 11:34  
76
PHP   16189  2010-08-21 09:37 ~ 2014-10-06 00:00  

검색

해피정닷컴 정보

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

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