Java regular expressions match numeric values

needs to match all values, including integers, decimals, and scientific counts. For example, + 100 "," 5e2 ","-123", "3.1416" and "- 1E-16" all represent numeric values. I don"t know how to write regular expressions.

Mar.29,2021

try this [+\ -]? (?: 0 | [1-9]\ d *) (?:\.\ d *)? (?: [eE] [+\ -]?\ d +)? , you can see the effect

at here .
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b37405-2adc1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b37405-2adc1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?