如何在 C# 中使用正则表达式将此 .js 文件解析为 xml 文件?

How to parse this .js file into an xml file using regex in c#?

//testing.js file
describe('Criteria and Adjustment Section', function () {
    it('the labels should have correct spellings -Expected result- the labels have correct spellings', function () {
    //some logic
});


describe('Test 1', function () {
    it('Click on the company dropdown -Expected result- Four options will be shown', function () {
    //some logic 
});

//这样的描述函数有多个

//这是一个 testing.js 文件,我必须将此文件解析为 xml 文件,使其看起来像:

//.xml file
Test No.     Test-Cases                 Expected Results
----------
01           all the labels should      the labels have correct spellings
             have correct spellings

----------
02           Click on the company       Four options will be shown
             dropdown

您可以尝试的正则表达式是:

describe\('[^']*', function \(\) {.*?it\('([^']*)-Expected result-([^']*)',

Explanation

示例 C# 代码:

using System;
using System.Text.RegularExpressions;

public class Test
{
    public static void Main()
    {

        string pattern = @"describe\('[^']*', function \(\) {.*?it\('([^']*)-Expected result-([^']*)',";
        string input = @"describe('Criteria and Adjustment Section', function () {
    it('the labels should have correct spellings -Expected result- the labels have correct spellings', function () {
    //some logic
});


describe('Test 1', function () {
    it('Click on the company dropdown -Expected result- Four options will be shown', function () {
    //some logic 
});";
        RegexOptions options = RegexOptions.Multiline | RegexOptions.Singleline;
        int count=0;
        foreach (Match m in Regex.Matches(input, pattern, options))
        {
            ++count;
            Console.WriteLine("Test No : "+count);
            Console.WriteLine("Test-Cases: "+m.Groups[1].Value);
            Console.WriteLine("Expected Reult: "+m.Groups[2].Value);

        }
    }
}

示例输出

Test No : 1
Test-Cases: the labels should have correct spellings 
Expected Reult:  the labels have correct spellings
Test No : 2
Test-Cases: Click on the company dropdown 
Expected Reult:  Four options will be shown

Run the code here

根据需要格式化输出