🐐 String uppercase/lowercase functions
This commit is contained in:
10
README.md
10
README.md
@@ -391,6 +391,16 @@ Replaces all non-overlapping matches of the regex `pattern` in `string` with `re
|
||||
|
||||
Splits `string` by `delimiter` and returns an array of substrings. Both arguments must be strings. If the delimiter is not found, returns a single-element array containing the original string. If the delimiter is an empty string, splits into individual characters.
|
||||
|
||||
### MAIVSCVLA
|
||||
`MAIVSCVLA(string)`
|
||||
|
||||
Returns a new string with every ASCII letter `a`–`z` replaced by its uppercase counterpart `A`–`Z`. All other bytes (digits, punctuation, non-ASCII) pass through unchanged.
|
||||
|
||||
### MINVSCVLA
|
||||
`MINVSCVLA(string)`
|
||||
|
||||
Returns a new string with every ASCII letter `A`–`Z` replaced by its lowercase counterpart `a`–`z`. All other bytes (digits, punctuation, non-ASCII) pass through unchanged.
|
||||
|
||||
## Modules
|
||||
Modules are additions to the base `CENTVRION` syntax. They add or change certain features. Modules are included in your code by having
|
||||
|
||||
|
||||
Reference in New Issue
Block a user