remove something from string code example
Example 1: python remove string from string
s = 'ab12abc34ba'
print(s.replace('ab', ''))
Example 2: remove substring from string javascript
var ret = "data-123".replace('data-','');
Example 3: remove from string python
"Str*ing With Chars I! don't want".replace('!','').replace('*','')