1

ファイルのテキストに次の形式のテキストが含まれていることを確認する必要があります。

#0
DIRECTION: FORWARD
SPEED: 10
TIME: 10

また

#1
DIRECTION: REVERSE
SPEED: 10
ROTATIONS: 10

そして、これは複数のステップで繰り返されます。

where#の後には数字がDIRECTION必要です。その後にFORWARDまたはREVERSEが続く必要SPEEDがあります。 TIMEROTATIONS

値の読み取りを開始する前に、ファイルにこのテキストがこの形式で含まれており、奇妙な値が含まれていないことを確認したいと思います。
ある種のワイルドカードを使用できますか? 正規表現を調べ始めましたが、これまで扱ったことはありません。
私がやりたいのは、数値がワイルドカードである場合にある種の比較を行うことです。これにより、行に基本的な書式が含まれているかどうかがわかります。

if(fileLines[0].Matches("#%")) // Where % would be the wildcard?  
if(fileLines[1].Matches("DIRECTION:%")) // Does something like this exist?
4

2 に答える 2

1

このパターンはうまくいくようです

    string[] lines = 
    {
        "#0",
        "DIRECTION: FORWARD",
        "SPEED: 10",
        "TIME: 10"
    };

      // meaning At start of line there is a # followed by digits till the end of line
    if(checkLine(@"^#\d+$", lines[0]) == false)
        Console.WriteLine("False on line 1");
    else
        Console.WriteLine("True on line 1");

      // meaning At start of line there is the word DIRECTION: followed by space and the words REVERSE or FORWARD
    if(checkLine(@"^DIRECTION: (REVERSE|FORWARD)", lines[1]) == false)
        Console.WriteLine("False on line 2");
    else
        Console.WriteLine("True on line 2");

      // meaning At start of line there is the word SPEED: followed by a space and digits till the end of the line
    if(checkLine(@"^SPEED: \d+$", lines[2]) == false)
        Console.WriteLine("False on line 3");
    else
        Console.WriteLine("True on line 3");

      // meaning At start of line there are the words TIME or ROTATIONS followed by colon, space and digits till the end of the line
    if(checkLine(@"^(TIME|ROTATIONS): \d+$", lines[3]) == false)
        Console.WriteLine("False on line 4");
    else
        Console.WriteLine("True on line 4");
}

// Define other methods and classes here
private bool checkLine(string regExp, string line)
{
    Regex r = new Regex(regExp);
    return r.IsMatch(line);
}
于 2012-05-25T15:49:03.630 に答える
0

ファイル内のすべての行を汎用リストとして読み取った場合。

        List<string> fileLines = new List<string>();
        fileLines.Add("#0");
        fileLines.Add("DIRECTION: FORWARD");
        fileLines.Add("SPEED: 10");
        fileLines.Add("TIME: 10");
        fileLines.Add("#1");
        fileLines.Add("DIRECTION: REVERSE");
        fileLines.Add("SPEED: 10");
        fileLines.Add("ROTATIONS: 10");

この関数を使用して、ファイルが有効かどうかを確認します

クレジット: Regex 実装の Steve

    public bool CheckConsistancy(List<string> fileLines)
    {
        bool status = false;
        if (fileLines != null && fileLines.Count > 0)
        {
            if(fileLines.Count % 4 == 0)
            {
                List<List<string>> fileLineGroups = fileLines.Select((x, i) => new { Index = i, Value = x }).GroupBy(x => x.Index / 4).Select(x => x.Select(v => v.Value).ToList()).ToList();
                foreach (List<string> fileLineGroup in fileLineGroups)
                {
                    if (checkLine(@"^#\d", fileLineGroup[0])) 
                    {
                        if (checkLine(@"^DIRECTION: (REVERSE|FORWARD)", fileLineGroup[1]))
                        {
                            if (checkLine(@"^SPEED: \d", fileLineGroup[2]))
                            {
                                if (checkLine(@"^(TIME|ROTATIONS): \d", fileLineGroup[3]))
                                {
                                    status = true;
                                }
                                else
                                {
                                    status = false;
                                    break;
                                }
                            }
                            else
                            {
                                status = false;
                                break;
                            }
                        }
                        else
                        {
                            status = false;
                            break;
                        }
                    }
                    else
                    {
                        status = false;
                        break;
                    }
                }
            }
            else
            {
                status = false;
            }
        }
        return status;
    }

    private bool checkLine(string regExp, string line)
    {
        Regex r = new Regex(regExp);
        return r.IsMatch(line);
    } 

関数を呼び出して一貫性をチェックする

bool status = CheckConsistancy(fileLines);
于 2012-05-25T16:11:50.370 に答える