StringsSplitText(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 symbolSubtring = "'",
	bool removeSymbol = true
)

Parameters

text  String
Text to separate into string.
separator  String  (Optional)
Separator that identifies each string.
symbolSubtring  String  (Optional)
Start and end symbol in each string.
removeSymbol  Boolean  (Optional)
Remove the symbol from each string.

Return Value

String
String[] with the separated text.

See Also