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

             }

    }
  • 相关阅读:
    PHP和Redis实现在高并发下的抢购及秒杀功能示例详解
    thinkphp整合系列之微信公众号支付
    JS之变量的运算
    (php)thinkphp3.2配置sql_server
    jyd数据结构
    mac终端下svn常用命令
    项目学习
    抛错
    phpunit
    Python
  • 原文地址:https://www.cnblogs.com/binlyzhuo/p/1214190.html
Copyright © 2011-2022 走看看