Why is this simple 'split/join' not working?

I had this working earlier. Been staring at it too long probably.


var XMLText:String = xmlFile.questions.question*.content;
 trace(XMLText);
 XMLText = XMLText.split("|\blank|").join("______");
 trace(XMLText);