StringsSplitText(String, String, String, String, Boolean) Method

Separate a text into strings using the indicated separator to identify them.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static string[] SplitText(
	string text,
	string separator,
	string startSymbolSubtring,
	string endSymbolSubstring,
	bool removeSymbol = true
)

Parameters

text  String
Text to separate into string.
separator  String
Separator that identifies each string.
startSymbolSubtring  String
Initial symbol in each chain.
endSymbolSubstring  String
Final symbol in each string.
removeSymbol  Boolean  (Optional)
Remove the symbol from each string.

Return Value

String
String[] with the separated text.

See Also