0

正規表現を使用して、開始値と終了値を含む文字列を取得したいと考えています。

例えば:

Regex regex = new Regex("A Bylaw(.*?)" + @"\.");
var v = regex.Match("blah blah blah A Bylaw to provide for the government and management of the Water Works System in the City and the collection of Rents, Rates, and charges for water. blah blah blah");

これは以下を返します:

市の水道システムの政府と管理、および水道料金、料金、料金の徴収を提供するため

を探しています:

市の水道システムの行政と管理、および水道料金、料金、料金の徴収を規定する細則。

4

3 に答える 3

0

正規表現 regex = new Regex("(?i)A Bylaw(.*)\.");

これにより、「A Bylaw」の場合を気にしない試合結果が得られます。

渡すテキストに「A BYLAW」が含まれている場合、これは完全に機能します..

@Sam私は、あなたが投稿したリンクに感謝します。

于 2013-09-26T17:58:50.933 に答える