我正在用 C# 编写一个非常简单的脚本解释器。该语言中没有If/Else
语句或用户可编程子程序;唯一的控制流是goto
关键字。
如果我使用foreach
循环逐行解析脚本,如何使程序“跳转”到GoTo()
块中参数指定的行号?
static void Main(string[] args)
{
string testLines = "SomeCommand(34,32)\n" +
"SomeCommand(1)\n" +
"GoTo(5)\n" +
"This(\"Will\",\"Be\",\"Skipped\")\n" +
"Destination(\"OfTheGoToKeyWord\")";
Regex r = new Regex("^(?<cmd>\\w+)[(](?<params>\\S+)[)]", RegexOptions.IgnoreCase | RegexOptions.IgnorePatternWhitespace);
string[] lines = testLines.Split('\n');
foreach (string line in lines)
{
try
{
string[] matches = r.Split(line);
if (matches[1].Equals("GoTo"))
{
GoToLineSpecifiedByMatchesElement2();
}
}
catch (Exception)
{
}
}
}