Answers for "python how to extract a word from string and remove specific characters after it till a new word"

4

remove specific word from string using python

#you can use replace function to remove specific word.
>>> message = 'you can use replace function'
>>> message.replace('function', '')
>>>'you can use replace '
Posted by: Guest on June-03-2020
0

python trim certain characters from string

string = '  xoxo love xoxo   '

# Leading and trailing whitespaces are removed
print(string.strip())

# All <whitespace>,x,o,e characters in the left
# and right of string are removed
print(string.strip(' xoe'))

#
Posted by: Guest on December-15-2020

Code answers related to "python how to extract a word from string and remove specific characters after it till a new word"

Python Answers by Framework

Browse Popular Code Answers by Language