vote up 4 vote down star

I'm new to using regex and I'd like to use it with Java.

What I want to do is find the first integer in a string.

Example: String = "the 14 dogs ate 12 bones" Would return 14.

String = "djakld;asjl14ajdka;sdj"

Would also return 14.

This is what I have so far.

Pattern intsOnly = Pattern.compile("\\d*");
Matcher makeMatch = intsOnly.matcher("dadsad14 dssaf jfdkasl;fj");
makeMatch.find();
String inputInt = makeMatch.group();
System.out.println(inputInt);

What am I doing wrong?

flag

2 Answers

vote up 14 vote down check

You're asking for 0 or more digits. YOu need to ask for 1 or more:

"\\d+"
link|flag
That worked. Thank you! – mc6688 Dec 16 '08 at 18:22
I generally avoid all things regex, but this is a really good use of it. Possibly the first time where it is more reliable and obvious than just coding it. +1 +1 – Bill K Dec 16 '08 at 18:31
What's the difference between working and not working code? One stroke. Asterisk is three strokes intersecting each other, and plus is just two. There is a koan waiting to happen! – Arkadiy Dec 16 '08 at 19:10
vote up 0 vote down

Heres a handy one I made for C# with generics. It will match based on your regular expression and return the types you need:

public T[] GetMatches<T>(string Input, string MatchPattern) where T : IConvertible
    {
        List<T> MatchedValues = new List<T>();
        Regex MatchInt = new Regex(MatchPattern);

        MatchCollection Matches = MatchInt.Matches(Input);
        foreach (Match m in Matches)
            MatchedValues.Add((T)Convert.ChangeType(m.Value, typeof(T)));

        return MatchedValues.ToArray<T>();
    }

then if you wanted to grab only the numbers and return them in an string[] array:

string Test = "22$data44abc";
string[] Matches = this.GetMatches<string>(Test, "\\d+");

Hopefully this is useful to someone...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.