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.
次の形式の文字列があります。
TEXT####TEXT####SPECIALTEXT
SPECIALTEXT基本的に、の2回目の出現後のを取得する必要があり####ます。私はそれを成し遂げることができません。ありがとう
SPECIALTEXT
####
正規表現(?:.*?####){2}(.*)には、最初のグループで探しているものが含まれています。
(?:.*?####){2}(.*)
シェルを使用awkしていて、それを使用できる場合:
awk
ファイルから:
awk 'BEGIN{FS="####"} {print $3}' input_file
変数から:
awk 'BEGIN{FS="####"} {print $3}' <<< "$input_variable"