在下面的响应中,当我MapbiomatricData.ninId时,我得到了“43445567665”这个值:
biomatricData.ninId = 43445567665
现在我必须只显示最后4位数,其余的应该像*
一样
我必须将43445567665
更改为以下格式
Like - *******7665
<View style={{ flexDirection: 'row', marginBottom: 10 }}>
<RegularText text={'Nin Number : '} textColor='grey' style={{ marginBottom: 5 }} />
<Text>{biomatricData.ninId}</Text>
</View>
5条答案
按热度按时间fdx2calv1#
将
biomatricData.ninId
放入变量中,然后完成下面给出的操作,并使用该变量进行显示。使用以下正则表达式。
vdgimpew2#
试试这个代码
如果你愿意,你可以把它变成一个函数
f2uvfpb93#
可以使用像这样的
Array
方法实现。nukf8bse4#
我们可以使用String padding在字符串值中添加 * 符号,以将字符串转换为敏感数据
checkout 文档以应用字符串填充
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart
vc9ivgsu5#
你可以用
Replace("InputNumber",Substr("InputNumber",4,6),"******")