repace을 이용한 정규식 모음
|@| 문자를 , 로 치환 = preg_replace("|\|@\||" , ', ' , ($kind));PHP 정규표현식 예제iframe 제거$STRING=preg_replace("!!is","",$STRING);script 제거$STRING=preg_replace("!!is","",$STRING);meta 제거$STRING=preg_replace("!!is","",$STRING);style 태그 제거$STRING=preg_replace("!!is","",$STRING); 를 공백으로 변환$STRING=str_replace(" "," ",$STRING);연속된 공백 1개로$STRING=preg_replace("/\s{2,}/"," ",$STRING);태그안에 style= 속성 제거$STRING=preg..
더보기