Replace

ID215
Link ReferenceNot set
Link CreditsNot set
Link Technical DocumentationNot set
PlCodelangPython
PlGroupStrings
PlItemTitleReplace
Code# http://www.tutorialspoint.com/python/string_replace.htm
str1 = "abc#def"

str1 = str1.replace("#",';")
print str1
# Output: abc;def
Result Example