Guest

wwwethemsulancom

By: a guest on Feb 20th, 2010  |  syntax: Java  |  size: 0.45 KB  |  hits: 175  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. package www.ethemsulan.com;
  2. import java.util.regex.Matcher;
  3. import java.util.regex.Pattern;
  4. public class RegexKullanimi {
  5. public static void main(String[] args) {
  6. //m ile biten ve E ile baslayan kelimeleri bulur.
  7. Pattern kalip=Pattern.compile("E.+?m");
  8. Matcher esl=kalip.matcher("Bu cumlede Ethem tek " +
  9.         "eslesiyor.Evkarlandim bu gun salla");
  10.       while (esl.find()) {
  11. System.out.println("Eslesen-->"+esl.group());
  12.         }
  13.     }
  14.  
  15. }