检查Scheme中的字符串包含情况
如何在 DrScheme 中检查字符串是否包含给定字符/子字符串?如果在模块中定义了正确的模块,我如何包含它?
How do I check, in DrScheme, whether a string contains a given character / substring? How do I include the proper module if it is defined in a module?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 DrScheme 中,假设语言设置为“Module”,则以下内容将起作用
In DrScheme, assuming the language is set to "Module", the following will work
没有标准程序可以做到这一点。 SRFI 13 包含您需要的过程(字符串索引)。请检查您的方案是否实施此 SRFI。
There is no standard procedure to do this. SRFI 13 contain the procedure you need (string-index). Please check if your Scheme implements this SRFI.
这是一个快速技巧。它返回字符串 s 在字符串 t 中的索引(从 0 开始)。如果没有找到则#f。如果您的方案具有 SRFI-13 支持或其他内置支持,则可能不是最好的方法。
代码已编辑。感谢伊莱的建议。
Here is a quick hack. It returns the index (0 based) of string s in string t. Or #f if not found. Probably not the best way to do it if your Scheme has SRFI-13 support, or other built-in support.
Code edited. Thanks to Eli for suggestions.