diff options
author | Burdette Lamar <[email protected]> | 2022-03-22 14:51:05 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-22 14:51:05 -0500 |
commit | 0140e6c41e4669e157c5a99b9d4b5b0fa153359b (patch) | |
tree | 0a8e557ad39cd70d2135734c8e91ddeecfdcb1d1 /doc/string/chars.rdoc | |
parent | 26aff37466fa3226122c65f49f2b7663e6b2551b (diff) |
[DOC] Enhanced RDoc for String (#5685)
Treats:
#chars
#codepoints
#each_char
#each_codepoint
#each_grapheme_cluster
#grapheme_clusters
Also, corrects a passage in #unicode_normalize that mentioned module UnicodeNormalize, whose doc (:nodoc:, actually) says not to mention it.
Notes
Notes:
Merged-By: BurdetteLamar <[email protected]>
Diffstat (limited to 'doc/string/chars.rdoc')
-rw-r--r-- | doc/string/chars.rdoc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/string/chars.rdoc b/doc/string/chars.rdoc new file mode 100644 index 0000000000..d24a1cc3a9 --- /dev/null +++ b/doc/string/chars.rdoc @@ -0,0 +1,5 @@ +Returns an array of the characters in +self+: + + 'hello'.chars # => ["h", "e", "l", "l", "o"] + 'тест'.chars # => ["т", "е", "с", "т"] + 'こんにちは'.chars # => ["こ", "ん", "に", "ち", "は"] |