Split功能的思想实现

Posted 上清风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Split功能的思想实现相关的知识,希望对你有一定的参考价值。

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

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
            string astring = "Now is time for all good people";
            ArrayList list_words = SplitWords(astring);
            foreach (string word in list_words)
            {
                Console.WriteLine(word);
            }
            Console.ReadKey();
        }

        static ArrayList SplitWords(string s)
        {
            ArrayList words = new ArrayList();

            int pos = s.IndexOf(" ");

            while (pos > 0)
            {
                string word = s.Substring(0, pos);
                words.Add(word);
                s = s.Substring(pos + 1, s.Length - (pos + 1));
                pos = s.IndexOf(" ");
                if (pos == -1)
                {
                    word = s.Substring(0,s.Length);
                    words.Add(word);
                }
            }
            return words; 
        }

    }
}

也可以考虑封装的更友好,在SplitWords(string s)方法参数加一个传递分隔符数组,对数组里的每个分割符进行相应的分割功能。

以上是关于Split功能的思想实现的主要内容,如果未能解决你的问题,请参考以下文章

16-hadoop-mapreduce简介

html PHP代码片段: - AJAX基本示例:此代码演示了使用PHP和JavaScript实现的基本AJAX功能。

oracle 如何用sql实现split功能

具有相同功能的活动和片段

Notepad++编辑器——Verilog代码片段直接编译

如何实现Oracle中字符串分隔