如何访问字符串java的特定部分?

时间:2014-11-29 22:20:56

标签: java

我必须编写一个模拟器来读取所有格式完全相同的字符串行。它们看起来像“添加长度为10的Job_A”,其中唯一改变的是第二个单词和最后的数字。如何访问并保存Job_A和10以及变量。我无法计算字符串字母,因为作业可能有不同的长度名称,整数可能有不同的数字位数?

1 个答案:

答案 0 :(得分:1)

您可以使用正则表达式,例如:

String input = "Add Job_A with length 10";

Pattern pattern = Pattern.compile("Add (.+) with length (\\d+)");
Matcher matcher = pattern.matcher(input);

if (matcher.matches()) {
    // Input has correct format, we can extract matched values into variables
    String jobName = matcher.group(1);
    int number = Integer.parseInt(matcher.group(2));
} else {
    // Input has incorrect format
}