Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の XML 行があります。
<indexentry><secondaryie>definition, 3/2/4</secondaryie></indexentry>
そして、上記に一致し、以下のように変換する正規表現が必要です。
ABC3(the first number)/P-2(second number)-4(third number)
これどうやってするの?
次の正規表現を使用します。
([0-9]+)/([0-9]+)/([0-9]+)
そして、キャプチャされたグループ #1、#2、#3 から文字列を作成します。
ABC3\1/P-2\2-4\3