subutil.wxs 867 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * 处理字符串为*格式,中间显示自定义*号
  3. * str 需要处理的字符串
  4. * startLength 前面显示的字符串长度
  5. * endLength 后面显示的字符串长度
  6. */
  7. var sub = function(str, startLength, endLength) {
  8. if (str.length == 0 || str == undefined) {
  9. return "";
  10. }
  11. var length = str.length;
  12. if (length >= startLength + endLength) {
  13. //判断当字符串长度为二时,隐藏末尾
  14. if (length === 2) {
  15. return str.substring(0, 1) + '*';
  16. }
  17. else if (3 <= length && length <= 10){
  18. return str.substring(0, 1) + '**';
  19. }
  20. //判断字符串长度大于首尾字符串长度之和时,隐藏中间部分
  21. else if (length >= 11) {
  22. return str.substring(0, startLength) + "****" + str.substring(length - endLength, length);
  23. } else {
  24. return str
  25. }
  26. }
  27. }
  28. module.exports = {
  29. sub: sub
  30. }