Mega Code Archive

 
Categories / Flash ActionScript / String
 

Use valueOf method to return the value of a string object

package{   import flash.display.Sprite;      public class Main extends Sprite{     public function Main(){         var sTitle:String = new String("rntsoft.com");         trace("the" + sTitle.valueOf() + " rocks!");     }   } }