Java 科学计数法正则表达式
public boolean getScientific(String input){ String regx = "^((-?\\d+.?\\d*)[Ee]{1}(-?\\d+))$";//科学计数法正则表达式 Pattern pattern = Pattern.compile(regx); return pattern.matcher(input).matches(); }
相关推荐
flyingssky 2020-08-18
TLROJE 2020-10-26
wangzhaotongalex 2020-10-20
wyq 2020-11-11
风雨断肠人 2020-10-13
duanqingfeng 2020-09-29
rechanel 2020-11-16
cshanzhizi 2020-10-16
luofuIT成长记录 2020-09-22
phphub 2020-09-10
taomengxing 2020-09-07
MaggieRose 2020-08-19
山水沐光 2020-08-18
jyj00 2020-08-15
AHuqihua 2020-08-09
山水沐光 2020-08-03