gpt4 book ai didi

javascript - 如何显示号码到****** ****

转载 作者:行者123 更新时间:2023-11-29 18:39:07 29 4
gpt4 key购买 nike

<分区>

我想将数字转换为 * 并在每 4 位数字后添加空格。例如:12345678 -> 1234 5678 -> **** ****现在我只是将数字转换为 * 但不能添加空格。 (数字转*时,加空格功能无效)请帮我!

import React, { Component } from 'react';
import { Text, TextInput, View } from 'react-native';

export default class PizzaTranslator extends Component {
constructor(props) {
super(props);
this.state = {text: ''};
}

render() {
return (
<View style={{padding: 10}}>
<TextInput
style={{height: 40}}
placeholder="Type here to translate!"
onChangeText={(text) => this.setState({text})}
value={this.state.text}
/>
<Text style={{padding: 10, fontSize: 42}}>
{this.state.text.replace(/(\(-?\d+(?:\.\d*){4})/g,'$1').replace(/(^\s+|\s+$)/,'') .slice(20).padStart(this.state.text.length, '*')}
</Text>
</View>
);
}
}

我希望输入:123456789123输出:**** **** ****

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com