我一直在编写这段代码,这似乎是一辈子的事情,但似乎无法让它发挥作用。
translation = re.sub("'''[a-zA-Z0-9].*?'''", "<b>[what do I put here to copy [a-zA-Z0-9].*?</b>", translation)
Here I'm trying to replace " ''' [text] ''' " with " <b> [text] </b>. What would I have to put between <b> and </b> to make it copy across the text?
先感谢您!