(save-match-data ; is usually a good idea (and (string-match "\\`\\([^@]+\\)@\\([^@]+\\)\\'" email) (setq user (match-string 1 email) domain (match-string 2 email) ) ))
save-match-dataとstring-matchのコンボ。
(save-match-data ; is usually a good idea (and (string-match "\\`\\([^@]+\\)@\\([^@]+\\)\\'" email) (setq user (match-string 1 email) domain (match-string 2 email) ) ))
save-match-dataとstring-matchのコンボ。