Answers for "how to remove first occurance of a word in string python"

1

strip first occurence of substring python

>>>mystring = "Description: Mary had a little lamb Description: "
>>>print mystring.replace("Description: ","",1)

"Mary had a little lamb Description: "
Posted by: Guest on June-18-2020

Code answers related to "how to remove first occurance of a word in string python"

Python Answers by Framework

Browse Popular Code Answers by Language