Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/help/topics/Words vs. WORDS.md')
| -rw-r--r-- | runtime/help/topics/Words vs. WORDS.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/runtime/help/topics/Words vs. WORDS.md b/runtime/help/topics/Words vs. WORDS.md new file mode 100644 index 00000000..786260f3 --- /dev/null +++ b/runtime/help/topics/Words vs. WORDS.md @@ -0,0 +1,19 @@ +Words vs. WORDS + +Words and WORDS are two very similar types of text objects. A word +is a string of "word" characters, which include letters, numbers, +and underscores. A WORD, on the other hand, is any string of +non-whitespace characters. + +In the example below, the words are underlined by 'w', and the +WORDS are underlined by 'W'. + + This "stuff" is not-so difficult! + --------------------------------- + wwww wwwww ww www ww wwwwwwwww + WWWW WWWWWWW WW WWWWWW WWWWWWWWWW + +As is visible in the example, the words do not include any of the +non-alphanumeric punctuation, while the WORDS do include the +quotes, hyphen, and exclamation point. Also notice that 'not-so' +contains two words, but only one WORD. |