쉼표를 제거하려면 바꿀 수 있습니다. 교체하려면 PHP에서 str_replace()를 사용하십시오.
다음이 쉼표
가 있는 입력 문자열이라고 가정해 보겠습니다.$name="John,Smith";
위의 문자열에서 쉼표를 제거한 후의 출력은
입니다.JohnSmith
예시
PHP 코드는 다음과 같습니다
<!DOCTYPE html> <html> <body> <?php $name="John,Smith"; $result = str_replace(',', '', $name); echo "The actual value is=",$name,"<br>"; echo "After removing the comma(,)=",$result,"<br>"; ?> </body> </html>를 제거한 후
출력
그러면 다음과 같은 출력이 생성됩니다.
The actual value is=John,Smith After removing the comma(,)=JohnSmith