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?