How to remove characters from the first String which are present in the second String code example
Example 1: java remove first character
"Hello World".substring(1) // ello World
Example 2: how to remove first letter of a string
s = "hello"
print s[1:]