Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP "preg_match"로 원하지 않는 문자 인쇄?

<시간/>

원하지 않는 문자를 인쇄하려면 preg_match_all()을 사용하십시오. 다음이 일부 특수 문자가 포함된 문자열이라고 가정해 보겠습니다. -

$sentence= "M-y Name/i_s John+Doe";

위의 문자열 즉

의 특수 문자만 출력에 표시하기를 원합니다.
-/_+

예시

PHP 코드는 다음과 같습니다

<!DOCTYPE html>
<html>
<body>
<?php
$sentence= "M-y Name/i_s John+Doe";
echo "The original value is=",$sentence,"<br>";
if(preg_match_all('/[^a-zA-Z ]/', $sentence, $output) ){
   echo "The unwanted characters are as follows= " . implode('', $output[0]);
}
?>
</body>
</html>

출력

그러면 다음과 같은 출력이 생성됩니다.

The original value is=M-y Name/i_s John+Doe
The unwanted characters are as follows= -/_+