Answers for "remove first occurence of char frominstring 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
0

how to remove first few characters from string in python

a_string = "abcde"

sliced = a_string[2:]
Remove first 2 characters

print(sliced)
Posted by: Guest on May-11-2021

Code answers related to "remove first occurence of char frominstring python"

Python Answers by Framework

Browse Popular Code Answers by Language