在Java中,将特定的单词与字符串分开可以通过以下方式实现:
String sentence = "Hello world! This is a sentence.";
String[] words = sentence.split(" ");
这样,words数组将包含句子中的每个单词。
String sentence = "Hello World! This is a sentence.";
Pattern pattern = Pattern.compile("\\b[A-Z]\\w*\\b");
Matcher matcher = pattern.matcher(sentence);
while (matcher.find()) {
String word = matcher.group();
System.out.println(word);
}
这样,将会打印出字符串中所有以大写字母开头的单词。
需要注意的是,以上方法都只是将字符串中的单词提取出来,并没有将它们与特定的单词进行分开。如果需要对单词与字符串进行分开,可以在提取出单词后再进行进一步的处理。
领取专属 10元无门槛券
手把手带您无忧上云