0

行番号付きの二重引用符と一重引用符内のテキストを取得するための正規表現。

例えば:

line 123 Processing File "This is what i am looking for"<'this is also what i need'>

出力は次のようになります。

line 123 This is what i am looking for  this is also what i need

私の正規表現は次のとおりです。

 MatchCollection matches2 = Regex.Matches(l, "\"([^\"]*)\"");

     foreach (Match match2 in matches2)
           {
                foreach (Capture capture2 in match2.Captures)
                    {
                        textBox4.Text = textBox4.Text + capture2.Value + Environment.NewLine;

                    }
            }

私は得ています(私の出力):

"This is what i am looking for"

二重引用符は必要ありません。引用符内のテキストのみが必要です。

4

3 に答える 3