' For example in the following code I need to pick up an Attribute in an XML file, but for some nodes, the attribute is mispelt as "ANumberAnalysisCause" instead of "aNumberAnalysisCause". How can I pick up either of the two attribute node values?

..
Set MoBN_AttributesNode = MoBN_Attributes.getNamedItem("aNumberAnalysisCause")
MoAN_CAUSE(c_child) = MoBN_AttributesNode.nodeValue
..

/Anyone please - Sammy

I don't know anything about XML, but to change the case of a string you can use
UCASE("Hello") - Change all to upper case OR LCASE("Hello") - Change all to lower case

Hope this helps

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.