831. Masking Personal Information
题目描述
We are given a personal information string S, which may represent either an email address or a phone number.
We would like to mask this personal information according to the following rules:
- Email address:
We define a name to be a string of length ≥ 2 consisting of only lowercase letters a-z or uppercase letters A-Z.
An email address starts with a name, followed by the symbol ‘@’, followed by a name, followed by the dot ‘.’ and followed by a name.
All email addresses are guaranteed to be valid and in the format of “name1@name2.name3”.
To mask an email, all names must be converted to lowercase and all letters between the first and last letter of the first name must be replaced by 5 asterisks ‘*’.
- Phone number:
A phone number is a string consisting of only the digits 0-9 or the characters from the set {‘+’, ‘-‘, ‘(‘, ‘)’, ‘ ‘}. You may assume a phone number contains 10 to 13 digits.
The last 10 digits make up the local number, while the digits before those make up the country code. Note that the country code is optional. We want to expose only the last 4 digits and mask all other digits.
The local number should be formatted and masked as “--1111”, where 1 represents the exposed digits.
To mask a phone number with country code like “+111 111 111 1111”, we write it in the form “+--*-1111”. The ‘+’ sign and the first ‘-‘ sign before the local number should only exist if there is a country code. For example, a 12 digit phone number mask should start with “+-“.
Note that extraneous characters like “(“, “)”, “ “, as well as extra dashes or plus signs not part of the above formatting scheme should be removed.
Return the correct “mask” of the information provided.
Example 1:
|
|
Example 2:
|
|
Example 3:
|
|
Example 4:
|
|
Notes:
- S.length <= 40.
- Emails have length at least 8.
- Phone numbers have length at least 10.
题目大意
给定字符串,要求如下:
- 如果是邮箱地址,根据
@
将字符串为firstName
和lastName
, 保留firstName
的第一个字符和最后一个字符,其他字符以*****
代替返回。 如果是电话号码,有可能是
10~13
位数字,其中十位为本地电话号码,其余的为国家号码。- 如果有国家号码则返回
+
+国家号码位数个 *
+-***-
+号码后四位
。 - 如果没有国家号码则返回
***-***-
+号码后四位
。
- 如果有国家号码则返回
解题思路
根据题目要求处理字符串。
代码
|
|