🐐 String uppercase/lowercase functions

This commit is contained in:
2026-04-24 18:10:50 +02:00
parent 37050e3e3b
commit dbaf01b6a3
10 changed files with 109 additions and 3 deletions

View File

@@ -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