I made an input system, and it capitalizes the first letter of the first word in your sentence, now I'm tryin to get it so that it capitalizes the word "I" where ever it is in the sentence, but im not sure how 2 do it, any ideas?
--SpAzZ--
I made an input system, and it capitalizes the first letter of the first word in your sentence, now I'm tryin to get it so that it capitalizes the word "I" where ever it is in the sentence, but im not sure how 2 do it, any ideas?
--SpAzZ--
"Be more concerned with your character than your reputation
because your character is who you really are while your reputation is merely what others think of you."
DesolateMx 8.0
$replace($1-,i,$upper(i))
i guess thats correct
on me:*:join:#:hop #
alias Caps_the_i {
var %s,%t = $regsub($1,/^i\b|\bi\b|\bi$/g,I,%s)
return %s
}
//echo -s $Caps_the_i(i am not nuts, am i)
--> I am not nuts, am I
Sign in to reply or start a new topic where your account has permission.