remove first character from string ard 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:]
"Hello World".substring(1) // ello World
s = "hello"
print s[1:]