[REBOL] Re: uppercase two letters?
From: tomc:darkwing:uoregon at: 26-Apr-2003 0:29
not using anything fancy>> l1: "this is a line"== "this is a line">> l2: rejoin parse l1 none== "thisisaline">> if l2/1 > 90 [change l2 (l2/1 - 32)]== "hisisaline">> l2== "Thisisaline">> l2: next next l2== "isisaline">> if l2/1 > 90 [change l2 (l2/1 - 32)]== "sisaline">> l2: head l2== "ThIsisaline" On Fri, 25 Apr 2003, Tom Foster wrote: