C# Char IsSeparator(String, Int32)

Description

Char IsSeparator(String, Int32) indicates whether the character at the specified position in a specified string is categorized as a separator character.

Syntax

Char.IsSeparator(String, Int32) has the following syntax.


public static bool IsSeparator(
  string s,
  int index
)

Parameters

Char.IsSeparator(String, Int32) has the following parameters.

  • s - A string.
  • index - The position of the character to evaluate in s.

Returns

Char.IsSeparator(String, Int32) method returns true if the character at position index in s is a separator character; otherwise, false.

Example

The following example demonstrates IsSeparator.


//  www  .j av a 2s .  c om
using System;

public class MainClass {
  public static void Main() {
    string str = "abcde1 abcef2";

    Console.WriteLine(Char.IsSeparator(str, 6));  // Output: "True"
  }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version