我正在编写一个程序,它输入一个用逗号分隔的数字列表,并总结数字的总和。例如,我有字符串" 10,20,30,40,50"
我想提取每个数字," 10" " 20" " 30" " 40" " 50"与字符串分开并找到数字列表的总和。
我找到了一个解决方案,然而,我发现我的代码有点乱,当我回去看看它时,我会有很多" WTF"一分钟。
所以,
我想知道是否有更好的方法来编写以下行:
StringTokenizer inputTokenizer = new StringTokenizer(input, "- ,\\n\\r\\t\\b\\fabcdefghijklmnopqrstuvwxyz");
我的目标是希望程序使用非数字的每个字符作为StringTokenizer的分隔符。
因此,例如字符串"11abc33"
应该分为"11"
和"33"
。
这是我提出的源代码
public static void main(String[] args) {
do {
//Prompts user to enter a series of numbers and stores it in the String "input"
String input = JOptionPane.showInputDialog("Enter a series of numbers separated by commas.");
//total stores the sum of each number entered
int total = 0;
if ((input != null)) //checks if the user didn't cancel or quit the program
{
//sets every alphabetical character in the input String to lowercase
input = input.toLowerCase();
//creates a StringTokenizer that uses commas and white spaces as delimiters
StringTokenizer inputTokenizer = new StringTokenizer(input, "- ,\\n\\r\\t\\b\\fabcdefghijklmnopqrstuvwxyz");
//sums the total of each number entry
while (inputTokenizer.hasMoreTokens()) {
total = total + Integer.parseInt(inputTokenizer.nextToken());
}
} else {
//exit the program because the user hit cancel or exit
System.exit(0);
}
//display the sum of the total number entries
JOptionPane.showMessageDialog(null, "Total: " + total);
} while (true);
}
答案 0 :(得分:4)
请注意,stringtokenizer在正常模式下使用空格分隔数字和子串。我的意思是使用这个构造函数StringTokenizer(string)
但您可以使用另一个构造函数来使用strTokenizer
分隔数字StringTokenizer(String str, String delim)
您可以使用","
作为delim参数,所有子字符串将根据","
分隔,锁定此示例:
String numbers = "10,20,30,40,50,60,70";
StringTokenizer t = new StringTokenizer(numbers, ",");
int sum=0;
while (t.hasMoreTokens()) {
sum+=Integer.parseInt(t.nextToken());
}
System.out.println("sum: " + sum);
您也可以在split(String regex)
班级中使用String
方法完成此操作
这是一个示例和解决方案。
String numbers = "10,20,30,40,50,60,70";// all numbers
String[] separated_numbers = numbers.split(",");// separate them by comma
// calculating sum
int sum = 0;
for (String number : separated_numbers) {
sum += Integer.parseInt(number);
}
// print sum
System.out.println("sum: " + sum);
答案 1 :(得分:2)
没有StringTokenizer
构造函数或工厂方法可以更简单地执行您想要的操作。如果你必须有一个StringTokenizer
,那么我认为没有更好的方法来获得一个,除非你可以调整分隔符字符串中的字符。
你写了
我的目标是希望程序使用非数字的每个字符作为StringTokenizer的分隔符。
但这似乎有点狭隘。似乎最重要的是令牌,而不是令牌化器,如果确实如此,那么基于正则表达式的String.split()
可能会提供令人满意的替代方案:
for (String token : input.split("[^0-9]+")) {
int i = Integer.parseInt(token);
// ...
}
根据你的说法,你需要考虑所有非数字作为分隔符。
还有其他基于正则表达式的解决方案,例如使用匹配一个数字的模式通过Matcher.find()
遍历字符串。
答案 2 :(得分:1)
您可以使用正则表达式执行此操作
do {
String input = JOptionPane.showInputDialog("Enter a series of numbers separated by commas.");
int total = 0;
if ((input != null))
{
Matcher m = Pattern.compile("(-?[0-9]+.[0-9]*)+").matcher(input);
// when using regex, the first group is always the full text, so we skip it.
for (int i = 1; i<=matcher.groupCount(); i++) {
total = total + Integer.parseInt(matcher.group(i));
}
} else {
System.exit(0);
}
JOptionPane.showMessageDialog(null, "Total: " + total);
} while (true);
答案 3 :(得分:0)
您可以将所有非数字字符替换为单个字符,然后使用split
方法获取所有数字数组。
public static void main(String[] args) {
do {
//Prompts user to enter a series of numbers and stores it in the String "input"
String input = JOptionPane.showInputDialog("Enter a series of numbers separated by commas.");
//total stores the sum of each number entered
int total = 0;
if ((input != null)) //checks if the user didn't cancel or quit the program
{
String[] characterTokens = input.split("[^0-9]+");
for (String characterToken : characterTokens) {
input.replace(characterToken, ",");
}
String[] numberTokens = input.split(",");
for (String numberToken: numberTokens) {
total += Integer.parseInt(numberToken);
}
} else {
//exit the program because the user hit cancel or exit
System.exit(0);
}
//display the sum of the total number entries
JOptionPane.showMessageDialog(null, "Total: " + total);
} while (true);
}