Remove substring from a string
- by xRobot
I want to remove the first characters from a string.
Is there a function that work like this ?:
.
a = "BarackObama"
print myfunction(4,a)
"ckObama"
b = "The world is mine"
print myfunction(6,b)
"rld is mine"