Answers for "phow to remove first occurance of 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 "phow to remove first occurance of word in string python"

Python Answers by Framework

Browse Popular Code Answers by Language