StringsSplitText(String, String, 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 startSymbolSubstring1,
	string endSymbolSubstring1,
	string startSymbolSubstring2,
	string endSymbolSubstring2,
	bool removeSymbol = true
)

Parameters

text  String
Text to separate into string.
separator  String
Separator that identifies each string.
startSymbolSubstring1  String
Initial 1 symbol in each chain.
endSymbolSubstring1  String
Symbol 1 end in each string.
startSymbolSubstring2  String
Initial 2 symbol in each chain.
endSymbolSubstring2  String
Final 2 symbol in each string.
removeSymbol  Boolean  (Optional)
Remove the symbol from each string.

Return Value

String
String[] with the separated text.

See Also