; どこで区切るかを求める ; c1 == c2 のとき c1 で区切る ; それ以外は c1 と c2 の大小関係に注意しつつこの 2 箇所で区切る ; 区切りごとに文字を出力する (defun main () ; read &optional input-stream eof-error-p eof-value recursive-p ⇒ object ; string-downcase string &key start end ⇒ cased-string ; read で読み込まれたオブジェクトを string 関数や symbol-name 関数で文字列にすると ; 大文字に変換されてしまうため string-downcase を使って小文字に変換する (let* ((s (string-downcase (read))) (c1 (read)) (c2 (read))) (cond ((= c1 c2) (progn ; write-string string &optional output-stream &key start end ⇒ string ; string の start 以上 end 未満の部分文字列 を output-stream へ書き出す (write-string s *standard-output* :end c1) (write-string s *standard-output* :start (1+ c1)))) ((> c1 c2) (progn (write-string s *standard-output* :end c2) (write-string s *standard-output* :start (1+ c2) :end c1) (write-string s *standard-output* :start (1+ c1)))) (t (progn (write-string s *standard-output* :end c1) (write-string s *standard-output* :start (1+ c1) :end c2) (write-string s *standard-output* :start (1+ c2))))) (terpri))) (main)