다음이 새 줄
이 있는 문자열이라고 가정해 보겠습니다.$sentence = " My name is John Smith My Favorite subject is PHP. ";
위의 새 줄을 제거하고 공백으로 대체해야 합니다. 즉, 출력은 −
여야 합니다.My name is John Smith My Favourite subject is PHP.
이를 위해 trim() 및 해당 preg_replace()를 사용하여 교체하십시오.
예시
PHP 코드는 다음과 같습니다
<!DOCTYPE html> <html> <body> <?php $sentence = " My name is John Smith My Favorite subject is PHP. "; $sentence = trim(preg_replace('/\s\s+/', ' ', $sentence)); echo $sentence; ?> </body> </html>
출력
그러면 다음과 같은 출력이 생성됩니다.
My name is John Smith My Favourite subject is PHP.