To alter the original string, reassign the return value to it, as follows:
package{ import flash.display.Sprite; public class Main extends Sprite{ public function Main(){ var example:String = "What case?"; example = example.toLowerCase( ); } } }