Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python replace

string = "[Message]"
string = string.replace("[", "")#Removes all [
string = string.replace("]", "")#Removes all ]

print(string)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #replace
ADD COMMENT
Topic
Name
9+1 =