리자

자신이 정규식에 자신있다! 봐주이소~!

· 2008-09-26 (금) 10:55:41 · 2605 · 4
<img src="이미지">
<area shape=RECT target=_blank coords=4,5,129,45 href="http://www.naver.com">
<area shape=RECT target=_blank coords=430,69,582,106 href="http://www.gmail.com/ ">
<area shape=RECT target=_blank coords=17,328,200,411 href=" http://www.naver.com ">
<area shape=RECT target=_blank coords=19,456,477,496 href=" http://www.naver.com">
<area shape=RECT target=_blank coords=18,500,574,534 href=" http://www.naver.com">
<area shape=RECT target=_blank coords=17,589,201,666 href="http://www.naver.com">
<area shape=RECT target=_blank coords=209,586,388,667 href="http://www.naver.com ">
<area shape=RECT target=_blank coords=401,585,594,669 href=" http://www.naver.com">

위를 보시면 href= 부분에 공백이 있는 것도 있구 없는것두 있어요

저는 href="주소" 에서 주소에 ltrim, rtirm 을 주고싶습니다

정규식을 이용해야 하는데 역시 제 머리론 정규식 어렵네요

정규식 고수님들을 답변좀~주이소 ㅠㅠ
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|

댓글 4개

<?
$s =<<<HTMLCODE
<img src="이미지">
<area shape=RECT target=_blank coords=4,5,129,45 href="http://www.naver.com">
<area shape=RECT target=_blank coords=430,69,582,106 href="http://www.gmail.com/ ">
<area shape=RECT target=_blank coords=17,328,200,411 href=" http://www.naver.com ">
<area shape=RECT target=_blank coords=19,456,477,496 href=" http://www.naver.com">
<area shape=RECT target=_blank coords=18,500,574,534 href=" http://www.naver.com">
<area shape=RECT target=_blank coords=17,589,201,666 href="http://www.naver.com">
<area shape=RECT target=_blank coords=209,586,388,667 href="http://www.naver.com ">
<area shape=RECT target=_blank coords=401,585,594,669 href=" http://www.naver.com">
HTMLCODE;

$src = array("/=\"\s/", "/\s\"\>/");
$tar = array("=\"", "\">");
$s = preg_replace($src, $tar, $s);
?>
<textarea rows=10 cols=100><?=$s?></textarea>
이거 같은 경우는 항상 "로 쌓여있다는 가정하에 본다면

e 를 사용하여 처리하면 될것같습니다.

<?
$s =<<<HTMLCODE
<img src="이미지">
<area shape=RECT target=_blank coords=4,5,129,45 href="http://www.naver.com">
<area shape=RECT target=_blank coords=430,69,582,106 href="http://www.gmail.com/ ">
<area shape=RECT target=_blank coords=17,328,200,411 href=" http://www.naver.com ">
<area shape=RECT target=_blank coords=19,456,477,496 href=" http://www.naver.com">
<area shape=RECT target=_blank coords=18,500,574,534 href=" http://www.naver.com">
<area shape=RECT target=_blank coords=17,589,201,666 href="http://www.naver.com">
<area shape=RECT target=_blank coords=209,586,388,667 href="http://www.naver.com ">
<area shape=RECT target=_blank coords=401,585,594,669 href=" http://www.naver.com">
HTMLCODE;



$s = preg_replace("`href\s*=\s*\"(.+)\"`iUe", "'href=\"'.trim('\\1').'\"'", $s);
?>
<textarea rows=10 cols=100><?=$s?></textarea>
$out1 = preg_replace("/(<area[^>]*href=[\"']?)\s*([^>\"'\s]+)\s*([\"']?[^>]*>)/i", "\${1}\${2}\${3}", $s);

echo "<xmp>";
print_r($out1);
echo "</xmp>";
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

6,077건

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
08-10-14 조회 1,306
08-10-11 조회 2,531
08-10-11 조회 1,253
08-10-09 조회 1,209
08-10-09 조회 1,464
08-10-09 조회 2,813
08-10-08 조회 2,471
08-10-02 조회 2,570
08-10-02 조회 1,263
08-10-02 조회 1,375
08-09-29 조회 3,332
08-09-29 조회 2,914
08-09-26 조회 4,149
08-09-26 조회 2,349
08-09-26 조회 2,435
08-09-26 조회 1,496
08-09-26 조회 2,606
08-09-26 조회 2,308
08-09-26 조회 3,050
08-09-22 조회 2,561
08-09-22 조회 1,725
08-09-22 조회 2,526
08-09-22 조회 1,686
08-09-22 조회 1,265
08-09-21 조회 2,323