C((zhi)非常に使用されている文字列関数を探しています。


        public static string Search_string(string s, string s1, string s2)  //          
        {  
            int n1, n2; 
            n1 = s.IndexOf(s1, 0) + s1.Length;   //      .            
            n2 = s.IndexOf(s2, n1);               //      
            return s.Substring(n1, n2 - n1);   //      ,      -     ,     
       }