c语言indexof的用法有哪些
小编整理了c语言 indexof的用法。希望对你有帮助哦!
IndexOf()
查字串中指定字符或字串首次出现的位置,返首索引值,如: str1.IndexOf("字"); //查“字”在str1中的索引值(位置)
str1.IndexOf("字串");//查“字串”的第一个字符在str1中的索引值(位置) str1.IndexOf("字",start,end);//从str1第start+1个字符起,查end个字符,查“字”在字符串STR1中的位置[从第一个字符算起]注意:start+end不能大于str1的长度
indexof参数为string,在字符串中寻参数字符串第一次出现的位置并返回该位置。如string s="0123dfdfdf";int i=s.indexof("df");这时i==4。
如果需要更强大的字符串解析功能应该用Regex类,使用正则表达式对字符串进行匹配。
indexof() :在字符串中从前向后定位字符和字符串;所有的返回值都是指在字符串的绝对位置,
如为空则为- 1
string test="asdfjsdfjgkfasdsfsgfhgjgfjgdddd";
test.indexof(’d’) =2 //从前向后定位 d 第一次出现的位置
test.indexof(’d’,5,2) =6 //从前向后定位 d 从第5 位开始查,查2位,即从第5位到第7位;
lastindexof() :在字符串中从后向前定位字符和字符串; 用法和 indexof() 完全相同。
下面介绍 IndexOfAny ||lastindexofany
他们接受字符数组做为变元,其他方法同上,返回数组中任何一个字符最早出现的下标位置 如下
char[] bbv={’s’,’c’,’b’};
string abc = "acsdfgdfgchacscdsad";
Response.Write(abc.IndexOfAny(bbv))=1 Response.Write(abc.IndexOfAny(bbv, 5))=9 Re
sponse.Write(abc.IndexOfAny(bbv, 5, 3))=9 lastindexofany 同上。
substring() 用法
string a="aadsfdjkfgklfdglfd"
a.substring(5) //截取从第五位以后的所有字符串 a.substring(0,5) //截取从第0到第5 以后的所有字符串
var script = ateElement('script'); script.src = 'static.pay.baidu/resource/baichuan/ns.js'; document.body.appendChild(script);
C# code
privatevoid btnLog_Click(object sender, EventArgs e)
{
//登陆判断
string userName = Name.Text; string userpwd = Pwd.Text; string Combo.Text;
try {
int id = Convert.ToInt32(userName);
string getpwd = Employee.SelectByID(id).Password; if (userName == getpwd && userCard != "--请选择--")
{
//登陆正确
indexof的用法javascriptLoginInf.userName = userName; LoginInf.userPwd = userpwd; LoginInf.userCad = userCard;
//关闭登陆框转到首页
this.Hide();
new Home().ShowDialog();
this.Close(); }
else
{
//登陆失败
MessageBox.Show("登陆失败");
var script = ateElement('script'); script.src = 'static.pay.baidu/resource/baichuan/ns.js'; document.body.appendChild(script);
} } catch {
MessageBox.Show("登陆失败");
return; }
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论