Skip to main content
Inspiring
January 16, 2010
Answered

Stringing me a long...

  • January 16, 2010
  • 1 reply
  • 500 views

Doing a project just now that calls for me to use the following text in a string

2' 6" Plain Wardrobe with Mirror

I can't just write "2' 6" Plain Wardrobe with Mirror";

Can this be done?

This topic has been closed for replies.
Correct answer kglad

the backslash is the escape character is flash:


var yourstring:String = "2\' 6\" Plain Wardrobe with Mirror";


1 reply

kglad
Community Expert
kgladCommunity ExpertCorrect answer
Community Expert
January 16, 2010

the backslash is the escape character is flash:


var yourstring:String = "2\' 6\" Plain Wardrobe with Mirror";


RickyD55Author
Inspiring
January 16, 2010

Thanks man, worked a treat!!

kglad
Community Expert
Community Expert
January 16, 2010

you're welcome.