<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>


LCASE$ Search:

In Transient String Words in String Library

Word Name: LCASE$
Type: Standard word
Data Stack Signature: -- / ss: s1 -- s2
Return Stack Signature: --
Availability: V1.2
Description:

Converts all upper case characters in string s1 to lower case, resulting in string s2.

Example:

$" Hello There! 123" lcase$ .$ \ displays hello there! 123

Comment:

An error occurs if the string stack is empty.

See Also: UCASE$ 

<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>