Talk:Ordered words: Difference between revisions

m
→‎A bug (which was not really a bug) in Rexx solution: re-inserted a missing '''e'''. -- ~~~~
m (→‎A bug (which was not really a bug) in Rexx solution: re-inserted a missing '''e'''. -- ~~~~)
Line 144:
 
: By the way, the above REXX example could be re-written without the need for a PROCEDURE, a Latin alphabet literal string, or temporary variables (along with some appropriate comments explaining the three steps performed):
<lang rexx>uppercase: return translate(changstrchangestr("ß",translate(arg(1),'ÄÖÜ',"äöü"),'SS'))
</lang>
Of course, if one wanted to break up the complex instruction, then a local (temporary) variable would be needed, along with a PROCEDURE statement. But the Latin alphabet literal isn't needed. I wonder how those German characters would translate on various codepages. -- [[User:Gerard Schildberger|Gerard Schildberger]] 20:09, 14 July 2012 (UTC)