strUpper

Converts a string to uppercase. Takes str (string to convert). Returns a new string with all lowercase letters converted to uppercase.

String

Parameters & Returns

Parameters

str String

Returns

String

Quick Summary

Converts a string to uppercase. Takes str (string to convert). Returns a new string with all lowercase letters converted to uppercase.

Technical Exegesis...

Returns a new string with all lowercase letters converted to uppercase. Non-alphabetic characters remain unchanged.

Uses standard ASCII uppercase conversion. Useful for case-insensitive comparisons, normalizing user input, or formatting output.

Example

Example.bam
; No example implemented yet