[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re:
tigris.org
サーバのML
At Mon, 07 Feb 2005 16:59:01 +0900,
mfalcon_sky@emailuser.net wrote:
> ファイルを添付いたしますが、現状ではget-headerでheaderを生成する際に、
> 正規表現にはマッチしているにもかかわらず、一部の項目が取得できないので
> す。
> 具体的には、From(match-string 1),Xref(match-string 2)は
> 取得できますが、Subject(match-string 3),Date(match-string 4)
> が取得できません。
たぶん、
(let* ((from (match-string-no-properties 1))
(url (shimbun-tigris-remove-amp (match-string-no-properties 2)))
(title (match-string-no-properties 3))
(date (match-string-no-properties 4))
の shimbun-tigris-remove-amp 内で string-match を使用してい
るためですね。
とりあえずこんなん↓でいけるんではないでしょうか?
(let* ((from (match-string-no-properties 1))
(title (match-string-no-properties 3))
(date (match-string-no-properties 4))
(url (shimbun-tigris-remove-amp (match-string-no-properties 2)))
---
02/08 09:31頃
NECソフト 水戸