私は次のテキストを持っています
|1 Style Indented Normal + Courier New T201_LLR_001|2 Style Indented Normal + Courier New 3 つのポインターを受け入れます。|3 Style Indented Normal + Courier New SSC_01_SRS_0001
このテキストを変換して、3 つの個別の出力を取得する必要があります
- T201_LLR_001
- 3 つの指針を受け入れなければならない
- SSC_01_SRS_0001
以下のレギュラーを使用しました (\S+_LLR_\d+)(.+)\t(SSC_.+)*
次の出力を取得するには
- T201_LLR_001
- |2 Style Indented Normal + Courier New 3 つのポインターを受け入れます。|3 Style Indented Normal + Courier New
- SSC_01_SRS_0001
しかし、私はテキストを取り除く必要があります|2 Style Indented Normal + Courier New" and "|3 Style Indented Normal + Courier New
正規表現で可能ですか?使い方がわかりません(?!TEXT)
。