Jump to content

Recommended Posts

Posted

Hello,

Is there a way to change an env varibale to upper case when pasting?

Here is an example code:

$var = EnvGet("USERNAME")

ClipPut($var)

Send("^v") ;this is where i want to past it in upper case

By default it is all lower case.

Thanks in advance for any help.

Posted (edited)

From the help file

StringReplace ( "string", "searchstring" or start, "replacestring" [, count [, casesense]] )

EDIT: just replace lower case letters with Uppercase letters Edited by danwilli
Posted

From the help file

EDIT: just replace lower case letters with Uppercase letters

Thanks for the quick reply.

I don't understand how can I replace an env varible in a clipboard to upper case.

Posted (edited)

Whats wrong with builtin StringUpper???

StringUpper Converts a string to uppercase.

StringUpper ( "string" )

ClipPut(StringUpper(EnvGet("USERNAME")))

Edited by weaponx
Posted

Whats wrong with builtin StringUpper???

StringUpper Converts a string to uppercase.

StringUpper ( "string" )

ClipPut(StringUpper(EnvGet("USERNAME")))

Thank you very much!

That did it.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...