Nov 10 2009

ASP equivalent to PHP Ucfirst function

Category: Asp, Phpadmin @ 11:56 pm

This code does the same thing that Ucfirst function makes in PHP. “Ucfirst” means “Uppercase first letter”. ASP doesn’t have this function natively:

function ucfirst(tname)
	ucfirst = ""
	tname = tname & " "
	do while instr(tname, " ")
		temp_string = left(tname, instr(tname," " ) -1)
		' ucase the first letter
		ucfirst = ucfirst & ucase(mid(temp_string, 1,1))
		' lcase for rest of word
		ucfirst = ucfirst & lcase(mid(temp_string,2)) & " "
		tname = right(tname, len(tname) - instr(tname," " ))
	loop
	'show me what i get
	ucfirst = ucfirst & ucase(mid(tname, 1,1))
	ucfirst = ucfirst & mid(tname,2)
	ucfirst = Trim(ucfirst)
end Function
  • Share/Bookmark

Related posts:

  1. ASP equivalent to PHP strip_tags
  2. ASP Function to count files in a folder
  3. ASP equivalent to PHP ereg_replace function
  4. PHP Web page to text function

Tags: , , ,

Leave a Reply