[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

Re: shimbun で の image



なかやまです

(concat "<[" spc "]*img[" spc "]+"
	"\\([^<=>]+=[^<=>]+[" spc "]+\\)*"
	;; 2. replaceable part
	"\\(src[" spc "]*=[" spc "]*"
	"\\(\""
	;; 4. quoted url
	"\\([^\"]+\\)"
	"\"\\|"
	;; 5. unquoted url, though that's illegal
	"\\([^" spc "\">]+\\)"
	"\\)\\)"))

の部分について、話を追いきれてないので勘違いしてるかも
しれませんが、これがもし HTML 属性のパースを意図しているなら、
 1. unquoted でも illegal でない場合がある
 2. single quote の場合がある
と思います。
参照: http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.2.2
-- 
Yoichi NAKAYAMA