Changing case of a string
;; INVERT CASE ;; If you understand above code then you should be able to figure out below code str sb="xYz" for i 0 sb.len ,if(isupper(sb\[i])) ,,sb\[i]=tolower(sb\[i]) ,else ,,sb\[i]=toupper(sb\[i]...
;; INVERT CASE ;; If you understand above code then you should be able to figure out below code str sb="xYz" for i 0 sb.len ,if(isupper(sb\[i])) ,,sb\[i]=tolower(sb\[i]) ,else ,,sb\[i]=toupper(sb\[i]...