Comment ajouter B à une chaîne en java

// if you want to add the characters \b in a string in java, all you must do is:
String myStr= ".\\b."+ "something else";
// it does work because there is a character before it and a character after it
Cloudy Caribou