Get string between two strings in a string

前端 未结 23 2209
别跟我提以往
别跟我提以往 2020-11-22 09:46

I have a string like:

\"super exemple of string key : text I want to keep - end of my string\"

I want to just keep the string which is betw

23条回答
  •  难免孤独
    2020-11-22 10:32

      private string gettxtbettwen(string txt, string first, string last)
        {
    
            StringBuilder sb = new StringBuilder(txt);
            int pos1 = txt.IndexOf(first)  + first.Length;
            int len = (txt.Length ) - pos1;
    
            string reminder = txt.Substring(pos1, len);
    
    
            int pos2 = reminder.IndexOf(last) - last.Length +1;
    
    
           
    
    
    
            return reminder.Substring(0, pos2); 
    
    
    
        }
    

提交回复
热议问题