有一个物体:
self.m_textCtrl_text = rt.RichTextCtrl(self.panel, -1, self.text, wx.DefaultPosition, (500, 100))
我定期在其中插入超链接:
urlStyle = rt.RichTextAttr()
urlStyle.SetTextColour(wx.Colour(attrs['fill']))
urlStyle.SetFontUnderlined(strToBool(attrs['underline']))
self.m_textCtrl_text.BeginStyle(urlStyle)
self.m_textCtrl_text.BeginURL(attrs['link'])
self.m_textCtrl_text.WriteText(attrs['text'])
self.m_textCtrl_text.EndURL()
self.m_textCtrl_text.EndStyle()
如何查找文本中的所有超链接?可以实现吗?