public static ControlStatement Parse(string str)
        {
            Match match = Regex.Match(str, Pattern, RegexOptions.Multiline);
            ControlStatement result = null;

            if (match.Success)
            {
                result = new ControlStatement();

                if (match.Groups["type"].Value != "")
					result.ControlType =
                        (ControlType)
                        Enum.Parse(typeof (ControlType), match.Groups["type"].Value.Replace(" ", ""), true);

                if (match.Groups["condition"].Value != "")
                {
                    // remove the ( at the begin and the ) at the end
                    if (match.Groups["condition"].Value.StartsWith("(") &&
                        match.Groups["condition"].Value.EndsWith(")"))
                        result.Condition = match.Groups["condition"].Value.
                            Remove(match.Groups["condition"].Value.Length - 1, 1).
                            Remove(0, 1).
                            Trim();
                    else
                        result.Condition = match.Groups["condition"].Value.Trim();
                }
            }

            return result;
        }
Esempio n. 2
0
        public static ControlStatement Parse(string str)
        {
            Match            match  = Regex.Match(str, Pattern, RegexOptions.Multiline);
            ControlStatement result = null;

            if (match.Success)
            {
                result = new ControlStatement();

                if (match.Groups["type"].Value != "")
                {
                    result.ControlType =
                        (ControlType)
                        Enum.Parse(typeof(ControlType), match.Groups["type"].Value.Replace(" ", "").TrimEnd('('), true);
                }

                if (match.Groups["condition"].Value != "")
                {
                    result.Condition = match.Groups["condition"].Value.Trim().TrimEnd(')');
                }
            }

            return(result);
        }
Esempio n. 3
0
        public static ControlStatement Parse(string str)
        {
            Match            match  = Regex.Match(str, Pattern, RegexOptions.Multiline);
            ControlStatement result = null;

            if (match.Success)
            {
                result = new ControlStatement();

                if (match.Groups["type"].Value != "")
                {
                    result.ControlType =
                        (ControlType)
                        Enum.Parse(typeof(ControlType), match.Groups["type"].Value.Replace(" ", ""), true);
                }

                if (match.Groups["condition"].Value != "")
                {
                    // remove the ( at the begin and the ) at the end
                    if (match.Groups["condition"].Value.StartsWith("(") &&
                        match.Groups["condition"].Value.EndsWith(")"))
                    {
                        result.Condition = match.Groups["condition"].Value.
                                           Remove(match.Groups["condition"].Value.Length - 1, 1).
                                           Remove(0, 1).
                                           Trim();
                    }
                    else
                    {
                        result.Condition = match.Groups["condition"].Value.Trim();
                    }
                }
            }

            return(result);
        }