Как создать массив для хранения совпадений с регулярными выражениями в Java? - PullRequest
0 голосов
/ 10 сентября 2010

Я пытаюсь взять файл, в котором хранятся данные этой формы:

Name=”Biscuit”

LatinName=”Retrieverus Aurum”

ImageFilename=”Biscuit.png”

DNA=”ITAYATYITITIAAYI”

и прочитать его с помощью регулярного выражения, чтобы найти полезную информацию;а именно, поля и их содержимое.

Я уже создал регулярное выражение, но мне кажется, что я могу получить только одно совпадение в любой момент времени, и вместо этого хотел бы поместить каждое совпадение из каждой строкифайл в своем собственном индексе строки.

Вот что у меня есть:

Scanner scanFile = new Scanner(file); 
        while (scanFile.hasNextLine()){
            System.out.println(scanFile.findInLine(".*"));
            scanFile.nextLine();
        }
        MatchResult result = null;
        scanFile.findInLine(Constants.ANIMAL_INFO_REGEX);
        result = scanFile.match();


        for (int i=1; i<=result.groupCount(); i++){
            System.out.println(result.group(i));
            System.out.println(result.groupCount());
        }
        scanFile.close();
        MySpecies species = new MySpecies(null, null, null, null);
        return species;

Большое спасибо за вашу помощь!

1 Ответ

0 голосов
/ 10 сентября 2010

Надеюсь, я правильно понимаю ваш вопрос ... Вот пример с веб-сайта Oracle:

/*
 * This code writes "One dog, two dogs in the yard."
 * to the standard-output stream:
 */
import java.util.regex.*;

public class Replacement {
    public static void main(String[] args) 
                         throws Exception {
        // Create a pattern to match cat
        Pattern p = Pattern.compile("cat");
        // Create a matcher with an input string
        Matcher m = p.matcher("one cat," +
                       " two cats in the yard");
        StringBuffer sb = new StringBuffer();
        boolean result = m.find();
        // Loop through and create a new String 
        // with the replacements
        while(result) {
            m.appendReplacement(sb, "dog");
            result = m.find();
        }
        // Add the last segment of input to 
        // the new String
        m.appendTail(sb);
        System.out.println(sb.toString());
    }
}

Надеюсь, это поможет ...

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...