Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 4bduc7i0n

    ucfirst

    but this is nicer. $str =~ s/((^\w)|(\s\w))/\U$1/xg;
  2. 4bduc7i0n

    NT Problems for Beginner

    try executing &quot;subinacl&quot; from the NT command prompt. (it comes with the NT resource kit 2) @ntFilestats = `subinacl /file <file name>`; and the @ntFilestats[3] string should contain the owners name. This may be a little off (possibly way off) as im not at an NT machine at the...
  3. 4bduc7i0n

    ucfirst

    its not clever, its not necessarily good, but it works. $str = &quot;just another perl hacker&quot;; print ustr($str); sub ustr{ @str = split(' ', shift); foreach(@str){$u .= ucfirst($_).&quot; &quot;;} chop $u; return $u; }

Part and Inventory Search

Back
Top