Skip to content
Advertisement

How write regex for matches String and BigInteger in java?

I tried to use this site https://www.freeformatter.com/java-regex-tester.html#ad-output. But I didn’t succeed.

My Java Regular Expression :

JavaScript

Entry to test against :

JavaScript

My code needs to give true for data.matches("(.*)\w+=[0-9][0-9]*$(.*)") of a = 800000000000000000000000.

Advertisement

Answer

Do it as follows:

JavaScript

Output:

JavaScript

Explanation:

  1. [A-Za-z] is for alphabets
  2. \s+ is for space(s)
  3. [-]? is for optional -
  4. \d+ is for digits
Advertisement