Python Forum

Full Version: List of URLs. wx.richtext.RichTextCtrl
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
There is an object:

import wx.richtext as rt
...
self.m_textCtrl_text = rt.RichTextCtrl(self.panel, -1, self.text, wx.DefaultPosition, (500, 100))
Periodical I insert in it hyperlinks:

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()
How to find all the hyperlinks in the text? Is it possible to implement this?