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

문자열 치환함수인데요....
 
 
아래의 소스대로 하면,
 
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년 전 조회 1,311
14년 전 조회 1,641
14년 전 조회 2,942
14년 전 조회 2,367
14년 전 조회 2,222
14년 전 조회 3,661
14년 전 조회 2,753
14년 전 조회 1,717
14년 전 조회 1,772
14년 전 조회 1,743
14년 전 조회 1,854
14년 전 조회 1,326
14년 전 조회 1,636
14년 전 조회 1,770
14년 전 조회 3,344
14년 전 조회 1,651
14년 전 조회 1,392
14년 전 조회 1,390
14년 전 조회 3,735
14년 전 조회 1,510
14년 전 조회 2,206
14년 전 조회 2,243
14년 전 조회 1,442
14년 전 조회 2,111
14년 전 조회 1,525
14년 전 조회 1,649
14년 전 조회 2,571
14년 전 조회 2,309
14년 전 조회 2,920
14년 전 조회 1,625
14년 전 조회 1,518
14년 전 조회 2,883
14년 전 조회 1,536
14년 전 조회 1,665
14년 전 조회 2,778
14년 전 조회 1,766
14년 전 조회 1,702
14년 전 조회 1,428
14년 전 조회 1,665
14년 전 조회 2,693
14년 전 조회 1,275
14년 전 조회 3,237
14년 전 조회 1,589
14년 전 조회 1,312
14년 전 조회 1,296
14년 전 조회 1,543
14년 전 조회 1,469
14년 전 조회 1,374
14년 전 조회 1,872
14년 전 조회 1,303
14년 전 조회 1,931
14년 전 조회 2,310
14년 전 조회 1,279
14년 전 조회 1,429
14년 전 조회 1,267
14년 전 조회 1,440
14년 전 조회 1,850
14년 전 조회 1,554
14년 전 조회 1,666
14년 전 조회 1,479
14년 전 조회 1,645
14년 전 조회 1,229
14년 전 조회 2,090
14년 전 조회 1,424
14년 전 조회 2,173
14년 전 조회 8,921
14년 전 조회 1,520
14년 전 조회 2,360
14년 전 조회 2,091
14년 전 조회 2,352
14년 전 조회 2,732
14년 전 조회 1,319
14년 전 조회 1,461
14년 전 조회 7,253
14년 전 조회 1,424
14년 전 조회 1,353
14년 전 조회 2,530
14년 전 조회 1,417
14년 전 조회 1,415
14년 전 조회 2,891
14년 전 조회 1,492
14년 전 조회 4,404
14년 전 조회 4,525
14년 전 조회 1,875
14년 전 조회 1,437
14년 전 조회 2,107
14년 전 조회 1,387
14년 전 조회 1,689
14년 전 조회 1,273
14년 전 조회 8,175
14년 전 조회 1,808
14년 전 조회 1,216
14년 전 조회 1,375
14년 전 조회 2,082
14년 전 조회 1,507
14년 전 조회 1,378
14년 전 조회 1,470
14년 전 조회 1,378
14년 전 조회 1,235
14년 전 조회 1,353