Maison >Java >javaDidacticiel >Comment puis-je remplir efficacement des chaînes en Java ?
Remplissage transparent des chaînes en Java
Question :
Java ne dispose pas d'un utilitaire explicite pour les chaînes rembourrage. Comment cette tâche peut-elle être accomplie efficacement ?
Réponse :
Introduit dans Java 5, String.format() offre une solution complète pour le remplissage chaînes :
Left-Padding :
public static String padLeft(String s, int n) { return String.format("%" + n + "s", s); }
Right-Padding :
public static String padRight(String s, int n) { return String.format("%-" + n + "s", s); }
Échantillon Utilisation :
public static void main(String args[]) throws Exception { System.out.println(padRight("Howto", 20) + "*"); System.out.println(padLeft("Howto", 20) + "*"); }
Sortie :
Howto * Howto*
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!