美文网首页unity3D技术分享
c#截取两个指定字符串中间的字符串列表

c#截取两个指定字符串中间的字符串列表

作者: 好怕怕 | 来源:发表于2019-01-18 10:05 被阅读13次

    常见的很多都是截取一个字符串中的一组,其实很多时候我们需要用到截取整个字符串中,所有匹配到的字符串,那得到将是一个列表。
    列如:"{{localization:0-35}u}{localization:50-50},jdjsi{emoj,{localization:12-58}}"
    截取中间的坐标,根据"{localization:""}"进行匹配,得到结果如下打印

    image.png
    public class Test : MonoBehaviour
    {
    
        public string mContent = "{{localization:0-35}u}{localization:50-50},jdjsi{emoj,{localization:12-58}}";
        public string mStartStr = "{localization:";
        public string mEndStr = "}";
    
    
        void Awake()
        {
            var list = GetAllSubstring(mContent, mStartStr, mEndStr);
            for (int i = 0; i < list.Count; i++)
            {
                Debug.LogError(list[i]);
            }
        }
    
        public List<string> GetAllSubstring(string content, string startStr, string endStr)
        {
            List<string> resultList = new List<string>();
    
            int len = content.Length;
            int startLen = startStr.Length;
            for (var i = 0; i < len; i++)
            {
                string a = startStr.Substring(0, 1);
                if (content[i].ToString() == a)
                {
                    int startIndex = (i + startLen - 1);
                    if (startIndex < len)
                    {
                        a = content.Substring(i, startLen);
                        if (a.Equals(startStr))
                        {
                            // 循环找出结尾匹配
                            for (int endIndex = startIndex; endIndex < len; endIndex++)
                            {
                                if (content[endIndex].ToString() == endStr)
                                {
                                    // 得到长度
                                    int splLen = endIndex - startIndex;
                                    string result = content.Substring(startIndex + 1, splLen - 1);
                                    resultList.Add(result);
                                    break;
                                }
                            }
                        }
                    }
                }
            }
            return resultList;
        }
    }
    

    相关文章

      网友评论

        本文标题:c#截取两个指定字符串中间的字符串列表

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