|   | CharExtensionsIsWordTerminator Method | 
        
        
            Tests a character to determine if it marks the end of a typical English word.
            
        
        Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntax Remarks
Remarks
            Performs no testing for ASCII codes > 127.
            Does not separate words based on punctuation of ' %  - _  
            However does include the angle bracket symbols < > as separators
            For reference the standard char tests are:
            
- "IsSperator (1) == simple space (32 or 160) only.
- IsPunctuation (23) == . , ! ? : ; " ' [ ] { } ( ) \ / @ % # * & - _  (plus other char's > 127)
- IsSymbol (8) == $ + < > = ^ ` ~
- IsWhiteSpace (6) == control char's 9 thru 13, plus 32 -- TAB, LF, VT, FF, CR, SP
 See Also
See Also