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

             }

    }
  • 相关阅读:
    Go 笔记之如何防止 goroutine 泄露
    调试 Go 的代码生成
    使用k8s容器钩子触发事件
    springboot教程
    Intellij IDEA 使用Spring-boot-devTools无效解决办法
    c# WMI获取机器硬件信息(硬盘,cpu,内存等)
    各式 Web 前端開發工具整理
    Informix 中执行多条SQL(Execute Script)
    Log4Net
    mysql 按年度、季度、月度、周、日SQL统计查询
  • 原文地址:https://www.cnblogs.com/binlyzhuo/p/1214190.html
Copyright © 2011-2022 走看看