首页 > 编程语言 > 详细

一个检索串提取代码示例是JAVA版本的,能不能用JS来写

时间:2021-02-15 23:40:47      阅读:24      评论:0      收藏:0      [点我收藏+]

这个是java版本的,能不能用js来写

 
public static String extractIndex(String encryptedData) {
    if (encryptedData == null || encryptedData.length() < 4) {
        return null;
    }
    char sepInData = encryptedData.charAt(0);
    if (encryptedData.charAt(encryptedData.length() - 2) != sepInDat a) {
        return null;
    }
    String[] parts = StringUtils.split(encryptedData, sepInData);
    if (sepInData == ‘$‘ || sepInData == ‘#‘) {
        return parts[0];
    } else {
        return parts[1];
    }
}

  



function extractIndex(s) {
    if (typeof s !== "string") return null
    const l = s.length
    if (l < 4) return null
    const c = s[0]
    if (s[l - 2] !== c) return null
    const p = s.split(c)
    return "$#".includes(c) ? p[1] : p [2]
}

  

showtooltip

一个检索串提取代码示例是JAVA版本的,能不能用JS来写

原文:https://www.cnblogs.com/coding8832/p/14403389.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!