c# 求提供思路,我str1“i want to eat an apple” str2"i want eat apple"用什么方法可以识别出str2少了to 和an两个单词

来源:学生作业帮助网 编辑:六六作业网 时间:2025/01/18 21:16:14
c#求提供思路,我str1“iwanttoeatanapple”str2"iwanteatapple"用什么方法可以识别出str2少了to和an两个单词c#求提供思路,我str1“iwanttoeat

c# 求提供思路,我str1“i want to eat an apple” str2"i want eat apple"用什么方法可以识别出str2少了to 和an两个单词
c# 求提供思路,我str1“i want to eat an apple” str2"i want eat apple"用什么方法可以识别出str2少了
to 和an两个单词

c# 求提供思路,我str1“i want to eat an apple” str2"i want eat apple"用什么方法可以识别出str2少了to 和an两个单词
string str1="i want to eat an apple";
string str2="i want eat apple";
Console.WriteLine(str1.Length);
Console.Write(str2.Length);
Console.ReadKey();
第一个长度是22
第二个是16.
str2不就少了吗?