String to Change | Text string. |
Case | Integer value that determines case type as noted in the list below: ■1 = Upper case ■2 = Lower case ■3 = Mixed case ■4 = Sentence case |
Function | STR_CASE("this is a TEST!",1) |
Result | THIS IS A TEST! |
Function | STR_CASE("this is a TEST!",2) |
Result | this is a test! |
Function | STR_CASE("this is a TEST!",3) |
Result | This Is A Test! |
Function: | STR_CASE("this is a TEST!",4) |
Result | This is a test! |