C# Class System.StringExtensions

Mostra file Open project: aspnet/WebHooks Class Usage Examples

Public Methods

Method Description
SplitAndTrim ( this input ) : string[]

Splits a string into segments based on a given separator. The segments are trimmed and empty segments containing only white space are removed.

Method Details

SplitAndTrim() public static method

Splits a string into segments based on a given separator. The segments are trimmed and empty segments containing only white space are removed.
public static SplitAndTrim ( this input ) : string[]
input this The string to split.
return string[]