再帰関数は parseMML です。MathML 式を Python 式に解析したい。簡単な例の mmlinput は分数 3/5 を生成する por ですが、次のようになります。
['(', '(', '3', ')', '/', '(', '5', ')', '(', '3', ')', '(', '5', ')', ')']
それ以外の:
['(', '(', '3', ')', '/', '(', '5', ')', ')']
すでに再帰的に入力されている要素を取り除く方法がわからないためです。それらをスキップする方法についてのアイデアはありますか?
ありがとう
mmlinput='''<?xml version="1.0"?> <math xmlns="http://www.w3.org/1998/Math/MathML" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/1998/Math/MathML http://www.w3.org/Math/XMLSchema/mathml2/mathml2.xsd"> <mrow> <mfrac> <mrow> <mn>3</mn> </mrow> <mrow> <mn>5</mn> </mrow> </mfrac> </mrow> </math>'''
def parseMML(mmlinput):
from lxml import etree
from StringIO import *
from lxml import objectify
exppy=[]
events = ("start", "end")
context = etree.iterparse(StringIO(mmlinput),events=events)
for action, elem in context:
if (action=='start') and (elem.tag=='mrow'):
exppy+='('
if (action=='end') and (elem.tag=='mrow'):
exppy+=')'
if (action=='start') and (elem.tag=='mfrac'):
mmlaux=etree.tostring(elem[0])
exppy+=parseMML(mmlaux)
exppy+='/'
mmlaux=etree.tostring(elem[1])
exppy+=parseMML(mmlaux)
if action=='start' and elem.tag=='mn': #this is a number
exppy+=elem.text
return (exppy)