This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Convert Text to lower case?
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Mar 22, 2013
04:20 PM
Convert Text to lower case?
Is there a function to convert text to lower-case?
Thanks!
Thanks!
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Mar 22, 2013
05:36 PM
If you're asking about InstallScript, there's StrToLower.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Mar 25, 2013
09:55 AM
RobertDickau wrote:
If you're asking about InstallScript, there's StrToLower.
Yes, sorry, InstallScript. Thanks, Robert!
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Mar 25, 2013
10:05 AM
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.
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.