|
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.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax 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