在 python wxWidgets TextCtrl 中解析 HTML
是否可能,或者是否有一个库允许我解析 wx.TextCtrl 小部件内的 HTML 代码?
Is it possible, or is there a library that will allow me to parse HTML code inside the wx.TextCtrl widget?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然,只需使用
myTextCtrl.GetValue()
,然后使用BeautifulSoup
,xml.dom.minidom
,HTMLParser
等:Sure, just use
myTextCtrl.GetValue()
, then parse the string with something likeBeautifulSoup
,xml.dom.minidom
,HTMLParser
, etc:wxTextCtrl将显示带有所有标签的HTML
要渲染html,您需要使用wxHtmlWindow
wxTextCtrl will display the HTML with all the tags
To render the html, you need to use wxHtmlWindow