Hi All!
Is there any option to set the
Position> function to be not-case sensitive?
If not, then how can I convert text given text to small letters, ie:
Text:
Aoeio7RtwWzX¦Æ should convert to aoeio7rtwwzx¶æ
I suppose some Regex/Easy pattern should be implemented, but how to do that?
How to convert given text to small letters
Moderators: Dorian (MJT support), JRL
@ rblack,
Try this
PepsiHog
Try this
Code: Select all
let>String=Aoeio7RtwWzX¦Æ
LowerCase>String,Result
mdl>%Result%
Windows 7
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
You can use the lowercase VBScript function.
Or uppercase
Code: Select all
VBSTART
VBEND
Let>varText=THIS IS MY STRING
VBEval>LCase("%varText%"),varText
MessageModal>varText
Code: Select all
VBSTART
VBEND
Let>varText=this is my string
VBEval>UCase("%varText%"),varText
MessageModal>varText
Last edited by Rain on Tue Nov 19, 2013 4:35 pm, edited 1 time in total.