Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java regular expression for negative numbers?

Tags:

java

regex

I have this pattern:

Pattern.compile("T([0-9]*)");

which works fine for positive numbers but I need it to also do negative numbers for instance "T-1T3T44" should work. Or maybe use space instead of 'T' so it should work for strings like this:"-1 2 3 2 -1 6 2". Sorry I haven't really used regular expressions before.So any suggestions? Thanks.

like image 943
Fofole Avatar asked Feb 29 '12 12:02

Fofole


1 Answers

Pattern.compile("T(-{0,1}(?!0)\\d+)"); 

Please note the usage of negative look-ahead (?!0) to exclude -0 number and numbers that start with 0.

like image 116
Lukasz Avatar answered Oct 02 '22 12:10

Lukasz