You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to determine casing (capitalization) modes in a string that includes numbers or symbols? Essentially, I want to be able to test strings for "all-caps", and test for "all-lower-case",
in strings that may include numbers and/or symbols. Is this possible?
For k, v in ["A98B", "A45b", "a45b", "0x89Af(Hex)"]
MsgBox, 0, case, % k ". " v ": " case(v)
*/
case(string) {
string := RegExReplace(string, "[^\pL]"), case := "Mixed"