https://www.jianshu.com/p/74ff86beaeaa
onChangeText={(text) => {
const newText = text.replace(/[^\d]+/, '');
//可以打印看看是否过滤掉了非数字
console.log("weichongbin newText: ",newText);
this.setState({coverage: newText})
}}
defaultValue={this.state.coverage.replace(/(\d)(?=(\d{3})+(?:\.\d+)?$)/g, "$1,")}