在 Ada 中查找字符串中的字符
有没有一种简单的方法来检查给定字符是否在字符串中?
我知道,如果字符串只是一个范围(例如 'a'..'z'
),那么我可以使用 in
运算符,但我需要一些东西“- _,.”中的字符行
。在 Ada 中这样做的最佳方法是什么?
Is there a simple way of checking whether a given character is in a string?
I know that if the string was simply a range (say 'a'..'z'
) then I could have used the in
operator, but I need something to the lines of char in "- _,."
. What's the best way of doing so in Ada?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Ada.Strings.Maps< 中的“Is_In” /a> 包。
Use "Is_In" from the Ada.Strings.Maps package.