Char String foreach : String Split « Data Types « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » Data Types » String SplitScreenshots 
Char String foreach
Char String foreach
    

using System;

public class StringSplitForeach
{
    public static void Main()
    {
        string s = "Oh, I hadn't thought of that";
        char[] separators = new char[] {' '','};
        
        foreach (string sub in s.Split(separators))
        {
            Console.WriteLine("Word: {0}", sub);
        }
    }
}
           
         
    
    
    
  
Related examples in the same category
1.Split with space
2.Split with a list of dividers
3.Split spaces with space
4.Show string in proper case
5.use the Split() method to split strings
6.Splitting StringsSplitting Strings
7.Split and join stringsSplit and join strings
8.Tokenize stringsTokenize strings
9.Split a string delimited by another string and return 2 non-empty elements
10.Split a string delimited by another string and return 2 elements
11.Split the original string at the delimiter and return all non-empty elements
12.Split a string delimited by another string and return all elements
13.Split a string delimited by characters and return all elements
14.Split a string delimited by characters and return 2 non-empty elements
15.Split a string delimited by characters and return 2 elements
16.Split a string delimited by characters and return all non-empty elements
17.Use StringSplitOptions enumeration to include or exclude substrings generated by the Split method.
18.Implements a StringTokenizer class for splitting a string into substrings using a set of delimiters.
19.String Tokenizer
20.Can parse a string representing a string[] into an actual string[].
21.Converts a collection of tags to a single string representation containing the tags separated by a comma
22.Takes in any string and convert it into a Byte array, suitable for e.g. insertion into a REG_BINARY Registry value.
23.Splits the string into lines.
24.Splits the string into words (all white space is removed).
25.Split Quoted String
26.Helper class to split a long word into a single one.
27.Splits the string into an array, using the separator.
28.Splits string name into a readable string based on camel casing.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.