remove first and last char from string java code example
Example 1: java remove first character from string
String string = "Hello World";
string.substring(1);
string.substring(0, string.length()-1);
string.substring(1, string.length()-1);
Example 2: How to remove the first and the last character of a string
var yourString = "/installers/";
var result = yourString.substring(1, yourString.length-1);
console.log(result);
var yourString = "/installers/services/";
var result = yourString.slice(1,-1);
console.log(result);