Method code for $english_lib.titleize()

[Turn off line numbering]
  1: arg string;
  2: var words;
  3: 
  4: words = string.explode();
  5: if (words.length() < 2) {
  6:     if (words)
  7:         return string.capitalize();
  8:     else
  9:         return string;
 10: }
 11: return [words[1].capitalize(), @words.subrange(2, words.length() - 2).lmap('capitalize), words[words.length()].capitalize()].join();

["// Created 11-Nov-1996 as a part of ColdCore, see: @help Credit"]

the Cold Dark