web-dev-qa-db-ja.com

文字列に数字が含まれているかどうかを確認

ユーザーが次の形式で文字列を入力するプログラムを書いています。

"What is the square of 10?"
  1. 文字列に数字があることを確認する必要があります
  2. そして数だけを抽出します。
  3. もし私が.contains("\\d+").contains("[0-9]+")を使っていると、入力が何であってもプログラムは文字列の中で数字を見つけることができませんが、.matches("\\d+")は数字しかない場合にのみ機能します。

検索と抽出のための解決策として何を使用できますか?

87
Duane

私が行った解決策はこのようになります:

Pattern numberPat = Pattern.compile("\\d+");
Matcher matcher1 = numberPat.matcher(line);

Pattern stringPat = Pattern.compile("What is the square of", Pattern.CASE_INSENSITIVE);
Matcher matcher2 = stringPat.matcher(line);

if (matcher1.find() && matcher2.find())
{
    int number = Integer.parseInt(matcher1.group());                    
    pw.println(number + " squared = " + (number * number));
}

私はそれが完璧な解決策ではないと確信していますが、それは私のニーズに合っています。助けてくれてありがとう。 :)

5
Duane

これを試して

str.matches(".*\\d.*");
197

入力文字列から最初の数字を抽出したい場合は、

public static String extractNumber(final String str) {                

    if(str == null || str.isEmpty()) return "";

    StringBuilder sb = new StringBuilder();
    boolean found = false;
    for(char c : str.toCharArray()){
        if(Character.isDigit(c)){
            sb.append(c);
            found = true;
        } else if(found){
            // If we already found a digit before and this char is not a digit, stop looping
            break;                
        }
    }

    return sb.toString();
}

例:

入力 "123abc"の場合、上記のメソッドは123を返します。

"abc1000def"の場合は1000です。

"555abc45"の場合、555。

"abc"の場合、空の文字列を返します。

26
Sajal Dutta

単一のパターンが正しいことがわかりませんでした。小さくて甘い解決策については、以下のガイドに従ってください。

String regex = "(.)*(\\d)(.)*";      
Pattern pattern = Pattern.compile(regex);
String msg = "What is the square of 10?";
boolean containsNumber = pattern.matcher(msg).matches();
9
Ishaan

s=s.replaceAll("[*a-zA-Z]", "")はすべてのアルファベットを置き換えます

s=s.replaceAll("[*0-9]", "")はすべての数値を置き換えます

上記の2つの置き換えを実行すると、すべて特殊文字ストリングが表示されます

String s=s.replaceAll("[^0-9]", "")から整数のみを抽出したい場合

String s=s.replaceAll("[^a-zA-Z]", "")からアルファベットだけを抽出したい場合

ハッピーコーディング:)

正規表現より速いと思います。

public final boolean containsDigit(String s) {
    boolean containsDigit = false;

    if (s != null && !s.isEmpty()) {
        for (char c : s.toCharArray()) {
            if (containsDigit = Character.isDigit(c)) {
                break;
            }
        }
    }

    return containsDigit;
}
9

以下のコードは、「文字列にJavaの数値が含まれているかどうかを確認する」のに十分です。

Pattern p = Pattern.compile("([0-9])");
Matcher m = p.matcher("Here is ur string");

if(m.find()){
    System.out.println("Hello "+m.find());
}
8
Narendra

次のパターンを試してください。

.matches("[a-zA-Z ]*\\d+.*")
6
Pattern p = Pattern.compile("(([A-Z].*[0-9])");
Matcher m = p.matcher("TEST 123");
boolean b = m.find();
System.out.println(b);
6
Reddy

あなたはこれを試すことができます

String text = "ddd123.0114cc";
    String numOnly = text.replaceAll("\\p{Alpha}","");
    try {
        double numVal = Double.valueOf(numOnly);
        System.out.println(text +" contains numbers");
    } catch (NumberFormatException e){
        System.out.println(text+" not contains numbers");
    }     
public String hasNums(String str) {
        char[] nums = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
        char[] toChar = new char[str.length()];
        for (int i = 0; i < str.length(); i++) {
            toChar[i] = str.charAt(i);
            for (int j = 0; j < nums.length; j++) {
                if (toChar[i] == nums[j]) { return str; }
            }
        }
        return "None";
    }
1
eyad david

.matches(".*\\d+.*")は数値に対してのみ機能しますが、//*などの他のシンボルには機能しません。

1
Rickyras

あなたは数を探すだけでなくそれを抽出したくないのであなたはあなたのためにそれをする小さな関数を書くべきです。あなたが数字を見つけるまで一文字ずつ進んでください。ああ、たった今stackoverflowであなたに必要なコードを見つけました: 文字列の整数を見つけます 。受け入れられた答えを見てください。

1

ASCIIはUNICODEの始まりにあるので、あなたはこのようなことをすることができます:

(x >= 97 && x <= 122) || (x >= 65 && x <= 90) // 97 == 'a' and 65 = 'A'

私はあなたが他の価値を把握できると確信しています...

0
Brad Yuan