Quick hack for Python-like string mutiplication?

Is there a function in AS to allow me to multiply a string by [SIZE=3]x[/SIZE]. The function should return the string repeated [SIZE=3]x[/SIZE] times.
e.g.

var str:String = "string";
trace(str*3); //expected output: "stringstringstring"