微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

解析CDATA一个

如何解决解析CDATA一个

我需要从以下svg文档中解析CDATA:

<?xml version='1.0' encoding='UTF-8'?>
<!-- This file was generated by dvisvgm 2.4 -->
<svg height='28.692695pt' version='1.1' viewBox='-72.000004 -70.904267 60.575314 28.692695' width='60.575314pt' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'>

<style type='text/css'>
<![CDATA[
text.f0 {font-family:cmex10;font-size:11.955168px}
text.f1 {font-family:cmmi12;font-size:11.955168px}
text.f2 {font-family:cmr12;font-size:11.955168px}
]]>
</style>
<g id='page1'>
<text class='f1' x='-72.000004' y='-53.569135'>c</text>
<text class='f2' x='-63.641186' y='-53.569135'>=</text>
<text class='f0' x='-51.215706' y='-70.426073'></text>
<text class='f1' x='-42.415333' y='-60.891712'>a<tspan x='-25.754955'>b</tspan>
<tspan x='-41.861851' y='-46.445899'>c</tspan>
<tspan x='-26.307752'>d</tspan>
</text>
<text class='f0' x='-20.225063' y='-70.426073'></text>
</g>
</svg>

我正在使用的代码如下:

import xml.dom.minidom

file_svg= "my_path"

doc = xml.dom.minidom.parse(file_svg)

style = doc.getElementsByTagName('style')

cdata = style[0].firstChild.wholeText

这给了我CDATA内部的文本(打印cdata):


text.f0 {font-family:cmex10;font-size:11.955168px}
text.f1 {font-family:cmmi12;font-size:11.955168px}
text.f2 {font-family:cmr12;font-size:11.955168px}

但是我需要将此文本组织成如下形式:

{"f0":"cmex10","f1":"cmmi12","f2":"cmr12"}

我敢肯定,有一种方法可以使用文本值:f0,f1,f2和字体系列的值:cmex10,cmmi12,cmr12,使用标准的xml.dom.minidom操作提取数据。>

我尝试过:

style[0].firstChild.nodeValue

但是它产生了一个空字符串。

您能帮我吗?

解决方法

正如注释中指出的那样,CDATA应该被解析为文本。这是一个简单解析的示例:

text = '''text.f0 {font-family:cmex10;font-size:11.955168px}
text.f1 {font-family:cmmi12;font-size:11.955168px}
text.f2 {font-family:cmr12;font-size:11.955168px}'''

d = {}

for line in text.split('\n'):
  value = line.split(':')[1].split(';')[0]
  key = line.split('.')[1].split(' ')[0]
  d[key] = value
  
print(d)

输出:

{'f0': 'cmex10','f1': 'cmmi12','f2': 'cmr12'}
,

下面(使用ElementTree

foreach ($request->filed as $key => $value) {
    $educational = new Educational;
    $educational->user_id = auth()->id()[$key];
    $educational->field = $request->field[$key];
    $educational->save();
    $user->grades()->sync($request->grade_id);
}
return redirect()->back();

输出

import xml.etree.ElementTree as ET


xml = '''<?xml version="1.0" encoding="UTF-8"?>
<!-- This file was generated by dvisvgm 2.4 -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="28.692695pt" version="1.1" viewBox="-72.000004 -70.904267 60.575314 28.692695" width="60.575314pt">
   <style type="text/css"><![CDATA[text.f0 {font-family:cmex10;font-size:11.955168px}
text.f1 {font-family:cmmi12;font-size:11.955168px}
text.f2 {font-family:cmr12;font-size:11.955168px}]]></style>
   <g id="page1">
      <text class="f1" x="-72.000004" y="-53.569135">c</text>
      <text class="f2" x="-63.641186" y="-53.569135">=</text>
      <text class="f0" x="-51.215706" y="-70.426073"></text>
      <text class="f1" x="-42.415333" y="-60.891712">
         a
         <tspan x="-25.754955">b</tspan>
         <tspan x="-41.861851" y="-46.445899">c</tspan>
         <tspan x="-26.307752">d</tspan>
      </text>
      <text class="f0" x="-20.225063" y="-70.426073"></text>
   </g>
</svg>'''
root = ET.fromstring(xml)
style = root.find('{http://www.w3.org/2000/svg}style')
cdata_lines = style.text.split('\n')
data = {}
for line in cdata_lines:
  dot_idx = line.find('.') + 1
  space_idx = line.find(' ')
  f = line[dot_idx:space_idx]
  colon_idx = line.find(':') + 1
  other_idx = line.find(';')
  cmex = line[colon_idx:other_idx]
  data[f] = cmex
print(data)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。