Back to Adaptive Vision Library website
You are here: Start » Function Reference » String » SplitString
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.
Divides the input string into an array of strings using the specified delimiters.
Syntax
void avl::SplitString ( const atl::String& inString, const atl::Array<atl::String>& inSplitters, const bool inRemoveEmptyEntries, atl::Array<atl::String>& outStrings )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inString | const String& | Input string | |
![]() |
inSplitters | const Array<String>& | Array of delimiters | |
![]() |
inRemoveEmptyEntries | const bool | False | Removes or leaves zero length strings |
![]() |
outStrings | Array<String>& | Array of a split elements |


