Lowercase Am / Pm
todaysdatetime = FormatDateTime(Now)to feed the date time into a variable and I get as expected something like this:
2/28/2004 11:51:07 AM
but what I want it the am / pm markers in lower case like
2/28/2004 11:51:07 am
Would this be easy to achive ?
View Replies
how to convert the first letter in a variable's value to lower-case?
View Replies
View Related
Can I change text/data that is entered in a textfield from lowercase to Title Case when it's INSERTed into a database table?
View Replies
View Related
What's a way (like, for a username) to allow lowercase and uppercase letter, and numbers?
Code:
objRegExp.Pattern = "[a-z][0-9]"
objRegExp.Global = True
objRegExp.IgnoreCase = True
That's what I have, but I want to make the letters or numbers OPTIONAL, but right now they are required. how can I fix that?
View Replies
View Related