cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
bbarton11
Level 5

Convert Text to lower case?

Is there a function to convert text to lower-case?

Thanks!
Labels (1)
0 Kudos
(3) Replies
RobertDickau
Flexera Alumni

If you're asking about InstallScript, there's StrToLower.
0 Kudos
bbarton11
Level 5

RobertDickau wrote:
If you're asking about InstallScript, there's StrToLower.


Yes, sorry, InstallScript. Thanks, Robert!
0 Kudos
Roman1
Level 9

StrToLower

The StrToLower function converts all the letters in a string to lowercase. This function does not affect non-alphabetic characters.

Syntax
StrToLower ( svTarget, szSource );

Parameters:

svTarget
Returns the string in szSource with all characters converted to lowercase.

szSource
Specifies the string to convert to all lowercase characters.
0 Kudos