可能重复:
JAVA: check a string if there is a special character in it
我是一名新手程序员,正在寻找帮助,确定角色是否是一个特殊角色。我的程序要求用户输入文件名,程序读取文件中的文本并确定文本中有多少空格,数字,字母和特殊字符。我已完成代码以确定空格,数字和字母,但不确定如何检查字符是否是特殊字符。我们对您提供的任何帮助表示赞赏,如果有些问题不够明确,我可以尝试详细说明。到目前为止我的代码是:
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。
答案 0 :(得分:11)
此方法检查String是否包含特殊字符(基于您的定义)。
/**
* 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.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的答案是最有效的方法。
答案 1 :(得分:3)
您可以使用regular expressions。
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++;
}
答案 2 :(得分:2)
查看类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;
}
}
答案 3 :(得分:0)
我会做什么:
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