首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > C# > C# 确定字符串末尾是否匹配指定子串

C# 确定字符串末尾是否匹配指定子串

  • 资源大小:28.42 kB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: C#源码

资 源 简 介

C# 确定字符串末尾是否匹配指定子串,本字符串查询实例具体到只匹配字符串开头和结尾是否有指定的字符串,下面是具体的查询代码编写方法:   private void button1_Click(object sender, EventArgs e)   {//确定字符串开头是否匹配指定子串    string MyFullInfo = "中华人民共和国";    string MyPartInfo="中华";    if(MyFullInfo.StartsWith(MyPartInfo))    MessageBox.Show(MyFullInfo + " 的开头是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);    else    MessageBox.Show(MyFullInfo + " 的开头不是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);   }   private void button2_Click(object sender, EventArgs e)   {//确定字符串末尾是否匹配指定子串    string MyFullInfo = "中华人民共和国";    string MyPartInfo = "共和国";    if (MyFullInfo.EndsWith(MyPartInfo))    MessageBox.Show(MyFullInfo + " 的末尾是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);    else    MessageBox.Show(MyFullInfo + " 的末尾不是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);   }

文 件 列 表

srcfans.com
D001
MyForm
Form1.Designer.cs
D001
D001
MyForm
Form1.cs
srcfans.com

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP
0.236612s