我有一個類似於"dasdasdsafs[image : image name : image]vvfd gvdfvg dfvgd"
的字符串。從這個字符串中,我想刪除從[image :
到: image]
星星的部分。我試圖找到使用以下代碼的'子串' -查找並移除以python中的特定子字符串開始和結尾的字符串
result = re.search('%s(.*)%s' % (start, end), st).group(1)
但它沒有給我所需的結果。 幫我找到從字符串中刪除子字符串的正確方法。
看看[移除子(https://stackoverflow.com/questions/8703017/remove-sub-string-by-using-python)或[子在python](HTTPS:/ /stackoverflow.com/questions/663171/is-there-a-way-to-substring-a-string-in-python?rq=1)然後[查找字符串中的字符索引](https:// stackoverflow.com/questions/2294493/how-to-get-the-position-of-a-character-in-python) – JGreenwell