Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

รูปแบบฟิลด์ UNIX_LINES ใน Java พร้อมตัวอย่าง


แฟล็กนี้เปิดใช้งานโหมดบรรทัด Unix ในโหมดบรรทัด Unix เฉพาะ '\n' เท่านั้นที่ใช้เป็นตัวสิ้นสุดบรรทัด และ '\r' จะถือเป็นอักขระตามตัวอักษร

ตัวอย่างที่ 1

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class LTERAL_Example {
   public static void main(String[] args) {
      String input = "This is the first line\r"
         + "This is the second line\r"
         + "This is the third line\r";
      //Regular expression to accept date in MM-DD-YYY format
      String regex = "^T.*e";
      //Creating a Pattern object
      Pattern pattern = Pattern.compile(regex, Pattern.UNIX_LINES);
      //Creating a Matcher object
      Matcher matcher = pattern.matcher(input);
      int count = 0;
      while(matcher.find()) {
         count++;
         System.out.println(matcher.group());
      }
      System.out.println("Number of matches: "+count);
   }
}

ผลลัพธ์

This is the first line
This is the second line
This is the third line
Number of matches: 1

ในขณะที่ในโหมดปกติ \r จะถือว่าเป็นการคืนรถ

ตัวอย่างที่ 2

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class LTERAL_Example {
   public static void main(String[] args) {
      String input = "This is the first line\r"
         + "This is the second line\r"
         + "This is the third line\r";
      //Regular expression to accept date in MM-DD-YYY format
      String regex = "^T.*e";
      //Creating a Pattern object
      Pattern pattern = Pattern.compile(regex);
      //Creating a Matcher object
      Matcher matcher = pattern.matcher(input);
      int count = 0;
      while(matcher.find()) {
         count++;
         System.out.println(matcher.group());
      }
      System.out.println("Number of matches: "+count);
   }
}

ผลลัพธ์

This is the first line
Number of matches: 1