0

我有一个文本文件,如下所示

add device 1: /dev/input/event7
  name:     "evfwd"
add device 2: /dev/input/event6
  name:     "aev_abs"
add device 3: /dev/input/event5
  name:     "light-prox"
add device 4: /dev/input/event4
  name:     "qtouch-touchscreen"
add device 5: /dev/input/event2
  name:     "cpcap-key"
add device 6: /dev/input/event1
  name:     "accelerometer"
add device 7: /dev/input/event0
  name:     "compass"
add device 8: /dev/input/event3
  name:     "omap-keypad"
4026-275085: /dev/input/event5: 0011 0008 0000001f
4026-275146: /dev/input/event5: 0000 0000 00000000
4026-494201: /dev/input/event5: 0011 0008 00000020
4026-494354: /dev/input/event5: 0000 0000 00000000

我需要做的是我想删除添加设备前导码,我只需要从 4026-275 开始的行......也就是说,

    4026-275085: /dev/input/event5: 0011 0008 0000001f
    4026-275146: /dev/input/event5: 0000 0000 00000000
    4026-494201: /dev/input/event5: 0011 0008 00000020
    4026-494354: /dev/input/event5: 0000 0000 00000000

现在这个数字可能会有所不同。我怎样才能有效地提取它。序言行号不是恒定的。

4

4 回答 4

1

只保留以数字开头的行。

for (String line : lines) {
    if (line.matches("^\\d+.*")) {
        System.out.println("line starts with a digit");
    }
}
于 2012-09-05T10:45:41.713 回答
0

如果您需要的行总是以数字开头,您可以使用以下内容检查是否是这种情况。

String[] lines = figureOutAWayToExtractLines();

// Iterate all lines
for(String line : lines)
    // Check if first character is a number (optionally trim whitespace)
    if(Character.isDigit(str.charAt(0)))
        // So something with it
        doSomethingWithLine(line);
于 2012-09-05T10:46:05.487 回答
0

逐行读取文本文件。对于每一行,如果字符串为“添加设备”或“开始”为“\tname:”,则只需忽略这些行。例如:

final String line = reader.readLine();
if(line != null) {
    if(line.startsWith("add device") || line.startsWith("\tname:")) {
        // ignore
     }
     else {
        // process
     }
}
于 2012-09-05T10:47:04.753 回答
0

尝试使用正则表达式:

boolean keepLine = Pattern.matches("^\d{4}-\d{6}.*", yourLine);
于 2012-09-05T10:48:08.343 回答