In below response I am getting "43445567665" this value when I am mapping biomatricData.ninId:
biomatricData.ninId = 43445567665
Now I have to display only last 4 digit and rest should come like *
I have to change 43445567665
in below format
Like - *******7665
<View style={{ flexDirection: 'row', marginBottom: 10 }}>
<RegularText text={'Nin Number : '} textColor='grey' style={{ marginBottom: 5 }} />
<Text>{biomatricData.ninId}</Text>
</View>