StringsSplitText(String, 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 startSymbolSubtring,
string endSymbolSubstring,
bool removeSymbol = true
)
Public Shared Function SplitText (
text As String,
separator As String,
startSymbolSubtring As String,
endSymbolSubstring As String,
Optional removeSymbol As Boolean = true
) As String()
- 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.
StringString[] with the separated text.