首页 > 代码库 > 怎么判断字符串a的内容包含字符串b的内容
怎么判断字符串a的内容包含字符串b的内容
在vb.net可以使用InStr(a,b)方法来判断字符串a的内容是否包含字符串b的内容。
InStr(a, b)
如果a中包含有b则InStr(a, b) 返回一个大于0的值,如果不含有b则返回0。可以通过返回值来判断。
c#中可以使用 IndexOf语句
public class Example{ public static void Main() { string s1 = "ani\u00ADmal"; string s2 = "animal"; // Find the index of the soft hyphen. Console.WriteLine(s1.IndexOf("\u00AD")); Console.WriteLine(s2.IndexOf("\u00AD")); // Find the index of the soft hyphen followed by "n". Console.WriteLine(s1.IndexOf("\u00ADn")); Console.WriteLine(s2.IndexOf("\u00ADn")); // Find the index of the soft hyphen followed by "m". Console.WriteLine(s1.IndexOf("\u00ADm")); Console.WriteLine(s2.IndexOf("\u00ADm")); }}
输出结果:
3
-1
-1
-1
3
-1
a.IndexOf(b),如果a中含有b字符串则,返回一个大于0的值,这个值是b首个字符在a字符串中的位置(从0开始计数)。如果a字符串不包含有b的话则返回的值为-1.
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。