|
String Operations
02 | WScript.Echo StrReverse( "be the coder" ) |
06 | WScript.Echo UCase( "be the coder" ) |
10 | WScript.Echo LCase( "BE THE CODER" ) |
15 | arr = Array( "one" , "two" , "three" , "four" ) |
16 | WScript.Echo Join(arr, "***" ) |
21 | WScript.Echo Mid( "be the coder" , 2, 4) |
25 | WScript.Echo Space(4) & "end" |
|
It gives the following output,
redoc eht eb
BE THE CODER
be the coder
one***two***three***four
e th
end
|
|