美文网首页
字符串截取

字符串截取

作者: 通哥 | 来源:发表于2017-04-21 15:04 被阅读0次

    获取结尾两个字符子串:

    let sessionId = "this is a test"

    let index = sessionId.index(sessionId.endIndex, offsetBy: -2)

    let suffix = sessionId.substring(from: index)

    最后结果为:“st”

    获取开头字符两个:

    let sessionId = "this is a test"

    let index = sessionId.index(sessionId.startIndex, offsetBy: 2)

    let prefix = sessionId.substring(to: index)

    最后结果为:“th”

    相关文章

      网友评论

          本文标题:字符串截取

          本文链接:https://www.haomeiwen.com/subject/cipdzttx.html