StringUtil startWith

Posted heyuchang666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了StringUtil startWith相关的知识,希望对你有一定的参考价值。

StringUtil 类 封装一些常用的 string  方法

--[[

    str 是否以 beginStr 开头

]]

function StringUtil.startWith(str, beginStr)

    local beginStrLen = string.len(beginStr)

    local subStr = string.sub(str, 1, beginStrLen)

    if subStr == beginStr then

        return true

    else

        return false

    end

end

以上是关于StringUtil startWith的主要内容,如果未能解决你的问题,请参考以下文章

StringUtil工具类

StringUtil字符串工具类

Android smack.util.StringUtil 没有 parseBareAddress

[ StringUtil ] isEmpty VS isBlank

StringUtil方法全集

java分页三个类 PageBean ResponseUtil StringUtil