Ad Code

Java 20- String of characters


Java 20- String of characters

في هذا الفيديو سنتحدث عن العبارات النصية او ما يسمى سلسلة من الاحرف في جافا JAVA, وسنستعرض بعض الدوال المهمة في ادارة العبارات النصية وكيفية استعمالها. String of characters



import javax.swing.JOptionPane;

public class App{

  /* concat(String str) : String
   * length() : int
   * charAt(int index) : char
   * substring(int start, int end) : String    // start to end-1  
   */
  
  public static void main(String[] args) {
    String StrConcat = "hello world! , I m Moad"+" Aitaayi "+2+1;
    String Str = "hello world! , I m Moad";
    String str1= Str.concat(" Aitaayi");
    String str2= Str.substring(14, 23);
    JOptionPane.showMessageDialog(null, StrConcat); // hello world! , I m Moad Aitaayi 21
    JOptionPane.showMessageDialog(null, str1); // hello world! , I m Moad Aitaayi
    JOptionPane.showMessageDialog(null, str2); //  Moad
    JOptionPane.showMessageDialog(null, Str.charAt(4)); // o
    JOptionPane.showMessageDialog(null, Str.length()); // 23
  }
}

إرسال تعليق

0 تعليقات

Close Menu