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 21JOptionPane.showMessageDialog(null, str1); // hello world! , I m Moad AitaayiJOptionPane.showMessageDialog(null, str2); // MoadJOptionPane.showMessageDialog(null, Str.charAt(4)); // oJOptionPane.showMessageDialog(null, Str.length()); // 23}}
0 تعليقات