Login   /   Register

Convert string to lowercase/uppercase

Rate this article
     1 votes, average: 2 out of 51 votes, average: 2 out of 51 votes, average: 2 out of 51 votes, average: 2 out of 51 votes, average: 2 out of 5
Loading ... Loading ...
April 1st, 2008 by daniva

Use the LCase function and to convert a string to lower-case.

Use the UCase function and to convert a string to upper-case.

portlName = "AdvancedQTP"
 
Print LCase( portlName )     ' prints "advancedqtp"
Print UCase( portlName )     ' prints "ADVANCEDQTP"

Posted in VBScript

Leave a Reply

You must be logged in to post a comment.

This article was viewed 745 times