1. Méthode trim()
La méthode trim() est utilisée pour supprimer les caractères d'espacement de début et de fin d'une chaîne.
Exemple :
public class Test { public static void main(String args[]) { String Str = new String(" www.runoob.com "); System.out.print("原始值 :" ); System.out.println( Str ); System.out.print("删除头尾空白 :" ); System.out.println( Str.trim() ); } }
Résultat :
原始值 : www.runoob.com 删除头尾空白 :www.runoob.com
2. Méthode split()
split( ) divise une chaîne en fonction de la correspondance avec l'expression régulière donnée.
Remarque : Les caractères d'échappement tels que ., | et * doivent être ajoutés avec \.
Remarque : Plusieurs séparateurs, vous pouvez utiliser |
Syntaxe :
public String[] split(String regex, int limit)
Paramètres :
regex
-- Délimiteur d'expression régulière.
limit
-- Le nombre de parties divisées.
Valeur de retour :
Tableau de chaînes.
3. Méthode charAt()
La méthode charAt() est utilisée pour renvoyer le caractère à l'index spécifié. La plage d'index va de 0 à length() - 1.
Syntaxe :
public char charAt(int index)
Paramètres :
index
-- L'index du personnage.
Valeur de retour :
Renvoie le caractère à l'index spécifié.
Exemple :
public class Test { public static void main(String args[]) { String s = "www.runoob.com"; char result = s.charAt(8); System.out.println(result); } }
Résultat :
o
Méthode substring()
La méthode substring() renvoie la sous-chaîne d'une chaîne.
Syntaxe :
public String substring(int beginIndex) 或 public String substring(int beginIndex, int endIndex)
Paramètres :
<code><span style="color: rgb(20, 25, 30); font-family: "Microsoft Yahei", "Hiragino Sans GB", Helvetica, "Helvetica Neue", 微软雅黑, Tahoma, Arial, sans-serif; font-size: 14px;">beginIndex</span>
beginIndex -- Index de départ (inclus), l'index commence à 0.
endIndex
Valeur de retour
sous-chaîne. Exemple :public class Test { public static void main(String args[]) { String Str = new String("www.runoob.com"); System.out.print("返回值 :" ); System.out.println(Str.substring(4) ); System.out.print("返回值 :" ); System.out.println(Str.substring(4, 10) ); } }
返回值 :runoob.com 返回值 :runoob
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!