2

我有一个文本文件,其中包含以下内容:

_vehicle_12 = objNull;
if (true) then
{
  _this = createVehicle ["Land_Mil_Guardhouse", [13741.654, 2926.7075, 3.8146973e-006], [], 0, "CAN_COLLIDE"];
  _vehicle_12 = _this;
  _this setDir -92.635818;
  _this setPos [13741.654, 2926.7075, 3.8146973e-006];
};

我想查找和之间的所有匹配项{};分配以下字符串:

string direction = "_this setDir" value, in example _vehicle_12 it would mean that:
string direction = "-92.635818";

string position = "_this setPos" value, in example _vehicle_12 it would be:
string position = "[13741.654, 2926.7075, 3.8146973e-006]";

我有多次出现这些类型,并且想找出每次{ };发生时设置方向和位置并移动到下一个事件的最佳方法。

以下代码可以读取字符串(将文件保存在一个大字符串中)并且它发现第一次出现很好,但是我想对其进行调整以查找 { 和 } 的每次出现;

string alltext = File.ReadAllText(@file);
string re1 = ".*?"; // Non-greedy match on filler
string re2 = "(\\{.*?\\})"; // Curly Braces 1

Regex r = new Regex(re1 + re2, RegexOptions.IgnoreCase | RegexOptions.Singleline);
Match m = r.Match(alltext);
if (m.Success)
{
    String cbraces1 = m.Groups[1].ToString();
    MessageBox.Show("Found vehicle: " + cbraces1.ToString() + "\n");
}
4

1 回答 1

1
  1. 想一个可能有效的正则表达式
  2. 测试一下。
  3. 如果不起作用,请修改并返回步骤 2。
  4. 你有一个有效的正则表达式:-)

为了让你开始:

\{\n([0-z\[\]" ,-\.=]+;\n)+\}

应该返回花括号内的各个行。

于 2013-03-23T00:35:49.490 回答