Method IsDelimiter
IsDelimiter(string, int)
Indicates whether the character at the specific position of string is word delimiter character.
public virtual bool IsDelimiter(string s, int pos)
Parameters
s
stringThe string in which character should be tested.
pos
intThe index of character in the string.
Returns
- bool
True if specified character is delimiter character; otherwise false.
IsDelimiter(int, int)
Indicates whether the character at the specific position of the string collection is word delimiter character.
public virtual bool IsDelimiter(int index, int pos)
Parameters
index
intThe index of line in which character should be tested.
pos
intThe index of character in the specific string.
Returns
- bool
True if specified character is delimiter character; otherwise false.
IsDelimiter(char)
Indicates whether the specified character is delimiter character.
public virtual bool IsDelimiter(char ch)
Parameters
ch
charThe char value that should be tested.
Returns
- bool
True if specified character is delimiter; otherwise false.