展开全部
using System;
using System.Collections.Generic;
using System.Text;
namespace C_Sharp
{
class Program
{
static void Main(string[] args)
{
string m_FristString= null;
string m_SecondString = null;
Console.WriteLine("enter first string:");
m_FristString = Console.ReadLine();
Console.WriteLine("enter Second string:");
m_SecondString = Console.ReadLine();
bool bCheck = checkString(m_FristString,m_SecondString);
if(bCheck)
{
Console.WriteLine("Correct!!");
}
else
{
Console.WriteLine("Error!!");
}
}
public static bool checkString(string theFirstString,string theSecondString)
{
int iFirstLen = theFirstString.Length;
int iSecondLen = theSecondString.Length;
if(iFirstLen>iSecondLen)
{
return false;
}
for(int i=0;i<iFirstLen;i++)
{
char pFirst = System.Convert.ToChar(theFirstString.Substring(i, 1));
if(theSecondString.IndexOf(pFirst)>-1)
{
continue;
}
else
{
return false;
}
}
return true;
}
}
}
------------------------------------
我刚刚给一个百度问题写完,又有人问了,稍微百度一下就可以找到咯
http://zhidao.baidu.com/question/102919752.html
using System.Collections.Generic;
using System.Text;
namespace C_Sharp
{
class Program
{
static void Main(string[] args)
{
string m_FristString= null;
string m_SecondString = null;
Console.WriteLine("enter first string:");
m_FristString = Console.ReadLine();
Console.WriteLine("enter Second string:");
m_SecondString = Console.ReadLine();
bool bCheck = checkString(m_FristString,m_SecondString);
if(bCheck)
{
Console.WriteLine("Correct!!");
}
else
{
Console.WriteLine("Error!!");
}
}
public static bool checkString(string theFirstString,string theSecondString)
{
int iFirstLen = theFirstString.Length;
int iSecondLen = theSecondString.Length;
if(iFirstLen>iSecondLen)
{
return false;
}
for(int i=0;i<iFirstLen;i++)
{
char pFirst = System.Convert.ToChar(theFirstString.Substring(i, 1));
if(theSecondString.IndexOf(pFirst)>-1)
{
continue;
}
else
{
return false;
}
}
return true;
}
}
}
------------------------------------
我刚刚给一个百度问题写完,又有人问了,稍微百度一下就可以找到咯
http://zhidao.baidu.com/question/102919752.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int i = "abcde".IndexOf("cd");
不过这段代码不安全,可能会被黑客利用
最好
string str=“cd”
if(cd.leangth<="abcde".leangth)
{
int i = "abcde".IndexOf("cd");}
不过这段代码不安全,可能会被黑客利用
最好
string str=“cd”
if(cd.leangth<="abcde".leangth)
{
int i = "abcde".IndexOf("cd");}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int i = "abcde".IndexOf("cd");
如果i = -1, 表示没有这个东西。
否则,i等于子串的位置。
如果i = -1, 表示没有这个东西。
否则,i等于子串的位置。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用indexof喔
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询