java how to delete character certain index in string

java how to delete character certain index in string
/**
 * @author lautturi.com
 * Java example: Remove the character from the nth position in the string
 */

import java.util.*;

public class Lautturi {

	public static void main(String[] args) {

		String str = "Hello World Lauutturi";
		int index = 15;
		String newStr = str.substring(0, index) + str.substring(index + 1);
		System.out.println(newStr);	
		
	}
}
Source:w‮ual.ww‬tturi.com

output:

Hello World Lautturi
Created Time:2017-09-11 15:35:15  Author:lautturi