-
C# 如何用多个字符串来切分字符串并去除空格
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Data;
-
- namespace Study
- {
- public static class Program3
- {
- static void Main(string[] args)
- {
- Proccess(@"13212345671,13312345672, 13412345674
- 13212345674,");
- Proccess("");
- Proccess(null);
- Console.Read();
- }
-
- public static void Proccess(string str)
- {
-
-
-
- string[] arr = (str ?? string.Empty).Split(new char[] { ',', '\t', '\n', ' ' }, StringSplitOptions.RemoveEmptyEntries);
- Console.WriteLine("本次切分后数组的长度为:{0}", arr.Length);
- int i = 1;
- foreach (string s in arr)
- {
- Console.WriteLine("{0}:{1}", (i++).ToString(), s);
- }
- }
- }
- }
-
相关阅读:
LeetCode
数据流中的中位数
二叉搜索树的第k个结点
对称的二叉树
按之字形顺序打印二叉树
把二叉树打印成多行
二叉树的下一个结点
链表中环的入口结点
删除链表中重复的结点
不用加减乘除做加法
-
原文地址:https://www.cnblogs.com/just09161018/p/4605333.html
Copyright © 2020-2023
润新知