9

可能重复:
JAVA:检查字符串中是否有特殊字符

我是一名新手程序员,正在寻求帮助确定字符是否为特殊字符。我的程序要求用户输入文件名,程序读取文件中的文本并确定文本中有多少空格、数字、字母和特殊字符。我已经完成了确定空格、数字和字母的代码,但是我不确定如何检查字符是否为特殊字符。感谢您提供的任何帮助,如果有不清楚的地方,我可以尝试详细说明。到目前为止,我的代码是:

import java.util.Scanner;
import java.io.*;

public class TextFile{

public static void main(String[] args){

  Scanner input = new Scanner (System.in);
  String fileName;
  boolean goodName = false;
  int blankCount = 0;
  int letterCount = 0;
  int digitCount = 0;
  int specialcharCount = 0;
  String currentLine;
  char c;
  Scanner lineFile= null;
  FileReader infile;

  System.out.println("Please enter the name of the file: ");
  fileName = input.nextLine();

  while (!goodName) {
    try{
      infile = new FileReader(fileName);
      lineFile = new Scanner(infile);

      goodName= true;
    }
    catch(IOException e) {
      System.out.println("Invalid file name, please enter correct file name: ");
      fileName=input.nextLine();
    }
  }

  while (lineFile.hasNextLine()){
    currentLine = lineFile.nextLine();
    for(int j=0; j<currentLine.length();j++){
      c=currentLine.charAt(j);
      if(c== ' ') blankCount++;
      if(Character.isDigit(c)) digitCount++;
      if(Character.isLetter(c)) letterCount++;
      if() specialcharCount++;
    }
  }
}
}

我需要在最后的 if 语句中添加一些东西来增加 specialcharCount。

4

4 回答 4

15

此方法检查字符串是否包含特殊字符(根据您的定义)。

/**
 *  Returns true if s contains any character other than 
 *  letters, numbers, or spaces.  Returns false otherwise.
 */

public boolean containsSpecialCharacter(String s) {
    return (s == null) ? false : s.matches("[^A-Za-z0-9 ]");
}

您可以使用相同的逻辑来计算字符串中的特殊字符,如下所示:

/**
 *  Counts the number of special characters in s.
 */

 public int getSpecialCharacterCount(String s) {
     if (s == null || s.trim().isEmpty()) {
         return 0;
     }
     int theCount = 0;
     for (int i = 0; i < s.length(); i++) {
         if (s.substring(i, 1).matches("[^A-Za-z0-9 ]")) {
             theCount++;
         }
     }
     return theCount;
 }

另一种方法是将所有特殊字符放入 String 并使用String.contains

/**
 *  Counts the number of special characters in s.
 */

 public int getSpecialCharacterCount(String s) {
     if (s == null || s.trim().isEmpty()) {
         return 0;
     }
     int theCount = 0;
     String specialChars = "/*!@#$%^&*()\"{}_[]|\\?/<>,.";
     for (int i = 0; i < s.length(); i++) {
         if (specialChars.contains(s.substring(i, 1))) {
             theCount++;
         }
     }
     return theCount;
 }

注意:您必须使用反斜杠转义反斜杠"字符。


以上是一般如何解决此问题的示例。

对于问题中所述的确切问题,@LanguagesNamedAfterCoffee 的答案是最有效的方法。

于 2012-10-14T19:54:20.117 回答
5

看看类的java.lang.Character静态成员方法(isDigit、isLetter、isLowerCase、...)

例子:

String str = "Hello World 123 !!";
int specials = 0, digits = 0, letters = 0, spaces = 0;
for (int i = 0; i < str.length(); ++i) {
   char ch = str.charAt(i);
   if (!Character.isDigit(ch) && !Character.isLetter(ch) && !Character.isSpace(ch)) {
      ++specials;
   } else if (Character.isDigit(ch)) {
      ++digits;
   } else if (Character.isSpace(ch)) {
      ++spaces;
   } else {
      ++letters;
   }
}
于 2012-10-14T19:45:58.767 回答
2

您可以使用正则表达式

String input = ...
if (input.matches("[^a-zA-Z0-9 ]"))

如果您对“特殊字符”的定义只是任何不适用于您已有的其他过滤器的东西,那么您可以简单地添加一个else. 另请注意,您必须else if在这种情况下使用:

if(c == ' ') {
    blankCount++;
} else if (Character.isDigit(c)) {
    digitCount++;
} else if (Character.isLetter(c)) {
    letterCount++;
} else { 
  specialcharCount++;
}
于 2012-10-14T19:54:54.213 回答
1

我会做什么:

char c;
int cint;
for(int n = 0; n < str.length(); n ++;)
{
    c = str.charAt(n);
    cint = (int)c;
    if(cint <48 || (cint > 57 && cint < 65) || (cint > 90 && cint < 97) || cint > 122)
    {
        specialCharacterCount++
    }
}

这是一种简单的做事方式,无需导入任何特殊类。将其粘贴在方法中,或直接放入主代码中。

ASCII 图表:http ://www.gophoto.it/view.php?i=http://i.msdn.microsoft.com/dynimg/IC102418.gif#.UHsqxFEmG08

于 2012-10-14T21:20:40.383 回答