Inserting data into XML

I’m trying to insert a variable into an XML object but I’m not sure what I need to be doing. Here’s what I have.

var newString:String = “new value”;

var newNode:XML = <industry>newString</industry>

Now that gets me the literal value of <industry>newString</industry>. How do I get <industry>new value</industry>

var newNode:XML = “<industry>”+newString+"</industry>"

var industry:XML = <industry/>;
var someIndustry:String = 'brewing';
industry.replace(0, someIndustry);
trace(industry.toXMLString());

Hope it helps.

thanks wv…

that did it.