C#实验6.2

/*

    1. 将下方给定的字符串根据分隔符拆分成字符串数组,数组每个元素均为一个单词。将该字符串数组按升序排序,并输出该字符串数组的内容。
      With Microsoft Azure, you have a gallery of open source options. Code in Ruby, Python, Java, PHP, and Node.js. Build on Windows, iOS, Linux, and more.

*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace exp602
{
    class Program
    {
        static void Main(string[] args)
        {
            string s1="With Microsoft Azure, you have a gallery of open source options. Code in Ruby, Python, Java, PHP, and Node.js. Build on Windows, iOS, Linux, and more.";
            string[] s2= s1.Split(new string[]{" ", ",", "."},StringSplitOptions.RemoveEmptyEntries); //去掉空格,逗号,句号
            string s3=null;
            foreach (var item in s2)
            {
                s3 = s3 + item;    //把去掉空格,逗号,句号的字符串数组连接成字符串
            }
            char[] s = s3.ToCharArray();    //利用string 类里的ToCharArray()方法把字符串分割成单个字母
            foreach (var item in s.OrderBy(x=>x))//OrderBy里的是Lambda表达式
            {
                Console.Write("\t{0}",item);
            }

        }
    }
}

split用法,超详细

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值