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.
drracketには、特定のデータが文字列に含まれているかどうかを確認できる組み込み関数がありますか?
たとえば、文字「a」が含まれる文字列の結果「true」を返したいとします。
「運命」->真の「運命」->偽
ありがとうございました
Racket には正規表現パッケージが含まれています。あなたが使用することができます
(regexp-match <pattern> <input>)
substring?SRFI-13 のように、おそらく利用可能な の実装があります。
substring?