Return to Snippet

Revision: 5528
at March 13, 2008 15:17 by f0vela


Initial Code
function firstUpper(text)
	
	firstUpper = text
	if text = "" then exit function
	
	largo 		= len(text)
	rightxt 	= right(text,largo-1)
	leftxt		= ucase(left(text,1))
	completo	= leftxt&rightxt

	firstUpper	= completo
	
end function

Initial URL


Initial Description


Initial Title
Uppercase first Letter

Initial Tags
ASP

Initial Language
ASP