如何在XML文件中的<>之间找到信息?

时间:2019-04-09 02:32:49

标签: python-3.x xml-parsing

我有一个用于防火墙的XML文件,我需要从中提取信息。我正在使用Python的xml.etree.ElementTree模块来解析XML文件,但是在提取一些信息时遇到了麻烦。

this.gridOptions = {
                defaultColDef: {
                    editable: (event: any) => {
                        if (this.isGridDataEditable) {
                            return true;
                        } else {
                            return false; // true/false based on params (or some other criteria) value
                        }
                    },
                    filter: true
                },
                singleClickEdit: true,
                stopEditingWhenGridLosesFocus: true,
                paginationPageSize: 20,
                editType: 'fullRow',
                onCellValueChanged: (event: any) => {
                },
                onRowValueChanged: (event: any) => {
                },
                onRowEditingStopped: (event: any) => {
                }
            };
        }

如何从<>之间提取1234和true?即使我可以得到id = 1234或log =“ true”也可以。我已经尝试过获取信息,就像我找到了rule的后代一样,但那行不通,我尝试了rule.id和rule.logged,仍然一无所获。我一直在搜索,找不到任何东西。

0 个答案:

没有答案