Removing markup links in text
问题 I'm cleaning some text from Reddit. When you include a link in a Reddit self-text, you do so like this: [the text you read](https://website.com/to/go/to) . I'd like to use regex to remove the hyperlink (e.g. https://website.com/to/go/to ) but keep the text you read . Here is another example: [the podcast list](https://www.reddit.com/r/datascience/wiki/podcasts) I'd like to keep: the podcast list . How can I do this with Python's re library? What is the appropriate regex? 回答1: I have created