zoukankan      html  css  js  c++  java
  • string的split

    using System;
    namespace StringSplit
    {
        
    public class StringTester
           
    {
              
    static void Main( )
               
    {
                 
    // create some strings to work with
                   string s1 = "One,Two,Three Liberty Associates,Inc.";
                    
    // constants for the space and comma characters
                     const char Space = ' ';
                     
    const char Comma = ',';
                     
    // array of delimiters to split the sentence with
                     char[] delimiters = new char[] {Space, Comma};
                     
    string output = "";
                     
    int ctr = 1;
                     
    // split the string and then iterate over the
                     
    // resulting array of strings
                    foreach (string subString in s1.Split(delimiters))
                      
    {
                          output 
    += ctr++;
                           output 
    += "";
                           output 
    += subString;
                           output 
    += "\n";
                       }

                           Console.WriteLine(output);
                }

             }

    }
  • 相关阅读:
    分母为0一定会抛异常吗?
    [译]Zookeeper的优点与局限性
    明明有class为什么还是报ClassNotFoundException?
    广告倒排索引架构与优化
    KafkaProducer源码分析
    Kafka服务端之网络连接源码分析
    Sublime常用快捷键
    sublime主题设置
    Sublime前端插件
    安装软件,更新软件,删除软件
  • 原文地址:https://www.cnblogs.com/binlyzhuo/p/1214190.html
Copyright © 2011-2022 走看看