mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-05-06 20:11:27 +08:00
15 lines
235 B
Go
15 lines
235 B
Go
package utils
|
|
|
|
/**
|
|
* @Description 添加qq群467890197 交流学习
|
|
* @Author 熊猫
|
|
* @Date 2022/1/13 17:16
|
|
**/
|
|
|
|
func Ddm(data string) string {
|
|
if len(data) < 6 {
|
|
return data
|
|
}
|
|
return data[:3] + "****" + data[len(data)-3:]
|
|
}
|