X ++将文本附加到字符串

时间:2014-11-12 15:57:13

标签: axapta x++

我目前有一个方法,它根据正在加载的XML文件中的标记将两个字符串附加在一起。我还想在这两个字符串之间添加一个唯一键,以便稍后解析。以下是它现在的工作方式和我希望它做的例子。

-CURRENT: strValue~&elem.text()~& 
-GOAL: strValue~&elem.text()

// If the tag is "Tag" or "Building append its text to strValue (part of item name)
        elem = elemTag.selectSingleNode("ofda:Type",nsmgr);

        if(elem && (elem.text() == "Tag" || elem.text() == "Building"))
        {
            elem = elemTag.selectSingleNode("ofda:Value",nsmgr);
            if(elem)
            {
                strValue += elem.text() + "~&";
            }
        }

1 个答案:

答案 0 :(得分:1)

strValue += strValue ? "~&" + elem.text() : elem.text();