StringsSplitText(String, String, String, Boolean) Method
Separate a text into strings using the indicated separator to identify them.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static string[] SplitText(
string text,
string separator = ",",
string symbolSubtring = "'",
bool removeSymbol = true
)
Public Shared Function SplitText (
text As String,
Optional separator As String = ",",
Optional symbolSubtring As String = "'",
Optional removeSymbol As Boolean = true
) As String()
- 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.
StringString[] with the separated text.