c#编程:接收键盘输入的英文字符串(单词之间用空格隔开),将字符串中出现的单词首字母改成大写后输出
.输入一个字符串,单词间用空格分隔,自定义按照Camel命名规则转换输出;示例:请输入一个字符串,各单词以空格隔开Myfavoritesport按Camel规则转换后名称...
.输入一个字符串,单词间用空格分隔,自定义按照Camel命名规则转换输出;
示例:
请输入一个字符串,各单词以空格隔开
My favorite sport
按Camel规则转换后名称是: myFavoriteSport
提示:先进行分隔,再将后两个单词的首字母转成大写,再进行组合连接。 展开
示例:
请输入一个字符串,各单词以空格隔开
My favorite sport
按Camel规则转换后名称是: myFavoriteSport
提示:先进行分隔,再将后两个单词的首字母转成大写,再进行组合连接。 展开
1个回答
2013-07-23
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
string [] words = null;
StringBuilder strBuff = null;
while (true)
{
try
{
System.Console.WriteLine("请输入英文字符串!(单词间用空格分隔)");
words = System.Console.ReadLine().Split(new char[] { ' ' });
if (words.Length > 0)
{
strBuff = new StringBuilder();
strBuff.Append(words[0].ToLower());
for (int i = 1; i < words.Length; i++)
{
words[i] = words[i].ToLower();
strBuff.AppendFormat("{0}{1}", Char.ToUpper(words[i][0]), words[i].Substring(1));
}
System.Console.WriteLine("结果:{0}", strBuff.ToString());
break;
}
}
catch
{
System.Console.WriteLine("输入不正确!请重新输入");
}
}
System.Console.Read(); //按回车结束程序
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
string [] words = null;
StringBuilder strBuff = null;
while (true)
{
try
{
System.Console.WriteLine("请输入英文字符串!(单词间用空格分隔)");
words = System.Console.ReadLine().Split(new char[] { ' ' });
if (words.Length > 0)
{
strBuff = new StringBuilder();
strBuff.Append(words[0].ToLower());
for (int i = 1; i < words.Length; i++)
{
words[i] = words[i].ToLower();
strBuff.AppendFormat("{0}{1}", Char.ToUpper(words[i][0]), words[i].Substring(1));
}
System.Console.WriteLine("结果:{0}", strBuff.ToString());
break;
}
}
catch
{
System.Console.WriteLine("输入不正确!请重新输入");
}
}
System.Console.Read(); //按回车结束程序
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询