여기서 막혔어요 도와주세요~

문자열 치환함수인데요....
 
 
아래의 소스대로 하면,
 
mildly가 입력되면 이상il복부 가 출력됩니다. 순차적으로 일치하는 단어만을 출력하게 되는데요
 
이를 정확하게 일치하는 단어만 출력되게 하는 방법이 있을까요? mildly를 입력하면 "경미하게" 출력되게끔요
 
 
 
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가

function bad_Word($str)
 {     
$str=str_replace("m","이상",$str);
$str=str_replace("mil","경",$str);
$str=str_replace("dly","복부",$str);
$str=str_replace("ased","외전",$str);
$str=str_replace("localized","후방 관절",$str);
$str=str_replace("increased","증가된",$str);
$str=str_replace("mildly","경미하게",$str);

   
 return $str;
 }   

?>
 
 
 
 
 
 
 
아래는 내용출력부분 입니다
 
 
<?
                   //<!-- 단어변환-->
     if ($member[mb_level] >= "12"){echo "<span class='ct lh'>".$view[content]."</span>";}
      else{
      
      
      $content = bad_Word($view[content]);
      echo "<span id=\"writeContents\">".$content."</span>";
       }
        ?>
|

댓글 8개

$str=str_replace("mildly","경미하게",$str);
$str=str_replace("increased","증가된",$str);
$str=str_replace("localized","후방 관절",$str);
$str=str_replace("ased","외전",$str);
$str=str_replace("dly","복부",$str);
$str=str_replace("mil","경",$str);
$str=str_replace("m","이상",$str);


이렇게 반대로 하면 되지 않을까요 ^^;
치환하는 단어가 2만개입니다 ㅜㅡ
정확히 일치하는 문자열만 출력하는 방법이 없을까요?
글자길이로 소팅후 치환순서를 정한후 str_replace 에 array 인자로 넣어주심댈듯
function Word($str) {
$a_res = array("m"=>"이상", "mil"=>"경", "dly"=>"복부", "ased"=>"외전", "localized"=>"후방 관절", "increased"=>"증가된", "mildly"=>"경미하게");

return $a_res[$str];
}
치환 문자열과, 치환대상 문자열을 배열로 만들어서 저장하면 됩니다.
stop word(아마 공백이 되겠죠.) 단위로 나눠서 변환을 하면 됩니다.
연속되어 있는 문자는 위에서 얘기한것쩌럼 긴쪽부터 변환해야 합니다.
이렇게 해도 안돼요 ㅠㅠ

function bad_Word($str)
{
$a_res = array('m' =>'이상','mil'=>'경','dly'=>'복부','ased'=>'외전','localized'=>'후방 관절','increased'=>'증가된','mildly'=>'경미하게');
$str = str_replace($a_res, $str);
return $str;
}
제가 잘못이해했는지 모르겠습니다만, 정규표현식으로 하면 쉽게되지 않을까요??
답변 감사합니다^^
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 930
14년 전 조회 1,332
14년 전 조회 2,614
14년 전 조회 2,062
14년 전 조회 1,899
14년 전 조회 3,396
14년 전 조회 2,435
14년 전 조회 1,384
14년 전 조회 1,429
14년 전 조회 1,408
14년 전 조회 1,536
14년 전 조회 988
14년 전 조회 1,294
14년 전 조회 1,428
14년 전 조회 3,026
14년 전 조회 1,313
14년 전 조회 1,049
14년 전 조회 1,050
14년 전 조회 3,389
14년 전 조회 1,171
14년 전 조회 1,889
14년 전 조회 1,997
14년 전 조회 1,093
14년 전 조회 1,797
14년 전 조회 1,190
14년 전 조회 1,338
14년 전 조회 2,271
14년 전 조회 2,055
14년 전 조회 2,611
14년 전 조회 1,316
14년 전 조회 1,189
14년 전 조회 2,569
14년 전 조회 1,214
14년 전 조회 1,314
14년 전 조회 2,522
14년 전 조회 1,421
14년 전 조회 1,405
14년 전 조회 1,110
14년 전 조회 1,373
14년 전 조회 2,396
14년 전 조회 947
14년 전 조회 2,947
14년 전 조회 1,263
14년 전 조회 984
14년 전 조회 947
14년 전 조회 1,232
14년 전 조회 1,150
14년 전 조회 1,062
14년 전 조회 1,537
14년 전 조회 976
14년 전 조회 1,609
14년 전 조회 2,021
14년 전 조회 957
14년 전 조회 1,092
14년 전 조회 925
14년 전 조회 1,094
14년 전 조회 1,515
14년 전 조회 1,220
14년 전 조회 1,362
14년 전 조회 1,159
14년 전 조회 1,342
14년 전 조회 906
14년 전 조회 1,736
14년 전 조회 1,091
14년 전 조회 1,914
14년 전 조회 8,666
14년 전 조회 1,203
14년 전 조회 2,028
14년 전 조회 1,798
14년 전 조회 2,061
14년 전 조회 2,469
14년 전 조회 994
14년 전 조회 1,137
14년 전 조회 6,919
14년 전 조회 1,097
14년 전 조회 1,019
14년 전 조회 2,204
14년 전 조회 1,096
14년 전 조회 1,064
14년 전 조회 2,568
14년 전 조회 1,153
14년 전 조회 4,153
14년 전 조회 4,288
14년 전 조회 1,566
14년 전 조회 1,135
14년 전 조회 1,788
14년 전 조회 1,066
14년 전 조회 1,355
14년 전 조회 954
14년 전 조회 7,882
14년 전 조회 1,491
14년 전 조회 879
14년 전 조회 1,050
14년 전 조회 1,735
14년 전 조회 1,189
14년 전 조회 1,033
14년 전 조회 1,121
14년 전 조회 1,072
14년 전 조회 926
14년 전 조회 1,063