Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Common Lispで文字列を反転するにはどうすればよいですか?
「HelloWorld」を「dlrowolleH」に変換したい。Pythonでは、拡張スライスを使用して実行されます:"Hello World"[::-1]。
"Hello World"[::-1]
reverseは文字列を含む任意のシーケンスを取ることができるため、次のように記述するだけで済みます。
> (reverse "Hello World") "dlroW olleH"