Topic Path: Symbol Reference > Functions > IndyLowerCase Function
ContentsIndexHome
PreviousUpNext
IndyLowerCase Function

Converts a string to it's lowercase representation.

File
function IndyLowerCase(
    const A1: string
): string;
Parameters 
Description 
A1 
Value to convert to lowercase. 

string - Contents of A1 after converting to lowercase.

IndyLowerCase is a String function used to convert the string in A1 to a string where all alphabetic characters are represented by the lowercase values. 

IndyLowerCase is used to isolate the OS- or platform-specific API calls required to convert characters to their lowercase equivalent. 

 

On the .Net platform, IndyLowerCase calls the built-in ToLower method for the string data type to perform the conversion. 

 

On all other platforms, the AnsiLowercase function is called to perform conversion of alphabetic characters. 

Use IndyUpperCase to convert alphabetic characters to their uppercase equivalents.

Copyright © 1993-2006, Chad Z. Hower (aka Kudzu) and the Indy Pit Crew. All rights reserved.
Post feedback to the Indy Docs Newsgroup.