zoukankan      html  css  js  c++  java
  • swift 取出中间文本

        func  stringmid (wholestring:String,front:String,behind:String)->String

        {

     

            

            

            if wholestring.isEmpty

            {

               return("") //wholestring 不能为nil

                

            }else  {

                var whole:NSString=wholestring

                

                

                let frontindex = whole.rangeOfString(front)

                if frontindex.length > 0

                {

                    whole = whole.substringFromIndex(frontindex.location + frontindex.length)

                    let behindindex = whole.rangeOfString(behind)

                    if behindindex.length > 0

                    {

                        whole = whole.substringToIndex(behindindex.location)

                    

                        return(whole as String)

                        

                    } else {return("")} //没有找到behindwholestring

                   

                    

                } else  {return("")}  // 没有找到front wholestring

                

               

            }

            

     

        }

  • 相关阅读:
    java三种实现线程的方法比较
    java基础
    java闭包
    android 设置textview跑马灯效果
    android控制系统音量
    android 查找某个特定文件后缀名
    android 歌词解析
    textview滑动效果
    puporwindow
    android 网络通讯
  • 原文地址:https://www.cnblogs.com/youyaoqi/p/5486647.html
Copyright © 2011-2022 走看看