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);
                }

             }

    }
  • 相关阅读:
    使用AChartEngine画图,项目总结
    Windows系统安装实验报告
    Linux系统安装实验报告
    vm虚拟机详细安装步骤
    L3-010. 是否完全二叉搜索树
    第13届景驰-埃森哲杯广东工业大学ACM程序设计大赛
    L2-021. 点赞狂魔
    L2-020. 功夫传人
    L2-019. 悄悄关注
    L2-017. 人以群分
  • 原文地址:https://www.cnblogs.com/binlyzhuo/p/1214190.html
Copyright © 2011-2022 走看看