示例#1
0
 public IniSectionStart(string content) : base(content)
 {
     //content = Content;
     formatting = ExtractFormat(content);
     content    = content.TrimStart();
     if (IniSettings.AllowInlineComments)
     {
         IniSettings.IndexOfAnyResult result = IniSettings.IndexOfAny(content, IniSettings.CommentChars);
         if (result.index > content.IndexOf(IniSettings.SectionCloseBracket))
         {
             inlineComment     = content.Substring(result.index + result.any.Length);
             inlineCommentChar = result.any;
             content           = content.Substring(0, result.index);
         }
     }
     if (IniSettings.AllowTextOnTheRight)
     {
         int closeBracketPos = content.LastIndexOf(IniSettings.SectionCloseBracket);
         if (closeBracketPos != content.Length - 1)
         {
             textOnTheRight = content.Substring(closeBracketPos + 1);
             content        = content.Substring(0, closeBracketPos);
         }
     }
     sectionName =
         content.Substring(IniSettings.SectionOpenBracket.Length,
                           content.Length - IniSettings.SectionCloseBracket.Length - IniSettings.SectionOpenBracket.Length).Trim();
     Content = content;
     Format();
 }
示例#2
0
        public IniValue(string content)
            : base(content)
        {
            string[] split = Content.Split(new[] { IniSettings.EqualsString }, 2, StringSplitOptions.None);
            formatting = ExtractFormat(content);
            string split0 = split[0].Trim();
            string split1 = split.Length >= 1
                                ? split[1].Trim()
                                : "";

            if (split0.Length > 0)
            {
                if (IniSettings.AllowInlineComments)
                {
                    IniSettings.IndexOfAnyResult result = IniSettings.IndexOfAny(split1, IniSettings.CommentChars);
                    if (result.index != -1)
                    {
                        _inlineComment     = split1.Substring(result.index + result.any.Length);
                        split1             = split1.Substring(0, result.index).TrimEnd();
                        _inlineCommentChar = result.any;
                    }
                }
                if (IniSettings.QuoteChar != null && split1.Length >= 2)
                {
                    var quoteChar = (char)IniSettings.QuoteChar;
                    if (split1[0] == quoteChar)
                    {
                        int lastQuotePos;
                        if (IniSettings.AllowTextOnTheRight)
                        {
                            lastQuotePos = split1.LastIndexOf(quoteChar);
                            if (lastQuotePos != split1.Length - 1)
                            {
                                _textOnTheRight = split1.Substring(lastQuotePos + 1);
                            }
                        }
                        else
                        {
                            lastQuotePos = split1.Length - 1;
                        }
                        if (lastQuotePos > 0)
                        {
                            if (split1.Length == 2)
                            {
                                split1 = "";
                            }
                            else
                            {
                                split1 = split1.Substring(1, lastQuotePos - 1);
                            }
                        }
                    }
                }
                _key   = split0;
                _value = split1;
            }
            Format();
        }