LSL Portal Wiki
Advertisement

Syntax[]

string llToLower( string src );

Returns the source string with uppercase characters replaced with their lower case equivalent.

Parameters

string src
any string value or string variable

Returns void

This function doesn't return a result.

Example

Says "hello avatar!" in the public chat when the object is touched:

default 
{
	touch_start(integer number)
	{
		llSay(PUBLIC_CHANNEL, llToLower("Hello Avatar!"));
	}
}

See also[]

  • llToLower - Function reference at SecondLife LSL Wiki
  • llToLower - Function reference at lslwiki.net


  Icon-edit-22x22 Read comments or write a new one!    


Advertisement