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.
私のセッドです。
sed 's/\([a-z]\)\([A-Z]\)\([0-9]\)\([a-z]\)\([A-Z]\)\([0-9]\)\([a-z]\)\([A-Z]\)\([0-9]\)\([a-z]\)/\10/g'
10番目のグループ化値を取得しようとしましたが、最初のグループ化値は0(ゼロ)になります。
10番目のグループ化値を取得するにはどうすればよいですか?
10番目のグループ化値を取得できるかどうか。
sed\0からまでの 10 グループのみをサポートし\9、非キャプチャ グループはサポートしません。
sed
\0
\9
コマンドを次のように書き換えることができます。
sed 's/[a-z][A-Z][0-9][a-z][A-Z][0-9][a-z][A-Z][0-9]\([a-z]\)/\1/g'