strLower

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

String

Parameters & Returns

Parameters

str String

Returns

String

Quick Summary

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

Technical Exegesis...

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

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

Example

Example.bam
; No example implemented yet