| CoreUtilsFragmentizeString Method (String) | 
 
            Splits string passed in into fragments. First on spaces, then on _ and then on Capitols/lowercase boundaries. All fragments are added to the
            same list, all '_''s stripped out are stored in the list as well. All spaces are not placed in the returned list.
            Underscores are stored per underscore, so a ___ part is stored as 3 strings with 1 underscore.
            
 
    Namespace: 
   SD.LLBLGen.Pro.Core
    Assembly:
   SD.LLBLGen.Pro.Core (in SD.LLBLGen.Pro.Core.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic static List<string> FragmentizeString(
	string toFragmentize
)
Public Shared Function FragmentizeString ( 
	toFragmentize As String
) As List(Of String)
Parameters
- toFragmentize
 - Type: SystemString
To fragmentize. 
Return Value
Type: 
ListString
            toFragmentize in fragments, including delimiters as and '_' but not spaces
            
See Also