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

             }

    }
  • 相关阅读:
    转:C#操作摄像头
    C# Memcached缓存
    WCF:调用方未由服务器进行身份验证
    SQL Server 存储过程进行分页查询
    SQL Server T-SQL高级查询
    C#设计模式总结(转)
    C#中构造函数和析构函数区别
    C#: static关键字的作用(转)
    C#结构体和类的区别(转)
    .NET多线程编程(转)
  • 原文地址:https://www.cnblogs.com/binlyzhuo/p/1214190.html
Copyright © 2011-2022 走看看