XfLoops

Results 1 comments of XfLoops

```js // 编写一个算法解析以下符号,转换为json树的结构 let str = `` function parseXML(str) { const openTagRegex = /^/ const closeTagRegex = /^/ const selfTagRegex = /^/ const regs = [openTagRegex, closeTagRegex, selfTagRegex] const matchTag...