Skip to content

Commit

Permalink
[doc] string.ToLower, string.ToUpper.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfusik committed Feb 19, 2024
1 parent 82c353d commit 0551a1e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,8 @@ Possible string operations include the following:
from the specified position until the end of the string.
* `str.Replace(old, new)` returns the contents of `str` with all occurrences
of `old` substituted with `new`.
* `str.ToLower()` and `str.ToUpper()` return a copy of the string
with characters changed to respectively lowercase and uppercase
* `Convert.ToBase64String(byteArray, offset, length)` encodes the specified
array part as a Base64 string.
* `Encoding.UTF8.GetByteCount(str)` calculates the number of bytes needed
Expand Down

0 comments on commit 0551a1e

Please sign in to comment.