Encoding XML element name beginning with a number?

后端 未结 5 1078
隐瞒了意图╮
隐瞒了意图╮ 2020-12-03 17:11

I\'m looking at the output of a tool, dumping a database table to XML. One of the columns is named 64kbit , the tool encodes that as such, and I need to rep

5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-03 17:56

    That encoding isn't default to XML, but seems required by your tool, since elements must start with a small character set.

    That _x0036_ sequence represents haxadecimal number 36 (decimal 54), which represents your 6 character in ASCII table.

提交回复
热议问题