📅  最后修改于: 2023-12-03 15:16:38.314000             🧑  作者: Mango
在Java中,我们可以使用字符串和正则表达式来计算给定句子中每个单词中的字符。
public class WordLength {
public static void main(String[] args) {
String sentence = "This is a sample sentence.";
String[] words = sentence.split(" ");
for (String word : words) {
int length = word.length();
System.out.println(word + ": " + length);
}
}
}
这段代码将给定的句子分成单词,并对每个单词计算字符数。最终结果将打印到控制台上。
# Java程序计算给定句子中每个单词中的字符
在Java中,我们可以使用字符串和正则表达式来计算给定句子中每个单词中的字符。
## 代码示例
```java
public class WordLength {
public static void main(String[] args) {
String sentence = "This is a sample sentence.";
String[] words = sentence.split(" ");
for (String word : words) {
int length = word.length();
System.out.println(word + ": " + length);
}
}
}
这段代码将给定的句子分成单词,并对每个单词计算字符数。最终结果将打印到控制台上。