C# 클래스 StringFormatEx.Plugins.Core.ParsingServices

파일 보기 프로젝트 열기: qstarin/StringFormatEx

공개 메소드들

메소드 설명
SplitNested ( string format, char splitChar ) : string[]

Enhances String.Split by ignoring any characters that are between the nested characters. It also allows you to stop after a certain number of splits. Example: SplitNested("a|b{1|2|3}|c", "|"c) = {"a", "b{1|2|3}", "c"} SplitNested("a|b{1|2|3}|c", "|"c, 2) = {"a", "b{1|2|3}|c"}

SplitNested ( string format, char splitChar, int maxItems ) : string[]

메소드 상세

SplitNested() 공개 정적인 메소드

Enhances String.Split by ignoring any characters that are between the nested characters. It also allows you to stop after a certain number of splits. Example: SplitNested("a|b{1|2|3}|c", "|"c) = {"a", "b{1|2|3}", "c"} SplitNested("a|b{1|2|3}|c", "|"c, 2) = {"a", "b{1|2|3}|c"}
public static SplitNested ( string format, char splitChar ) : string[]
format string
splitChar char
리턴 string[]

SplitNested() 공개 정적인 메소드

public static SplitNested ( string format, char splitChar, int maxItems ) : string[]
format string
splitChar char
maxItems int
리턴 string[]