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,基本上是在第二次出现之后####。我无法完成它。谢谢
SPECIALTEXT
####
正则表达式(?:.*?####){2}(.*)包含您在其第一组中寻找的内容。
(?:.*?####){2}(.*)
如果您正在使用 shell 并且可以使用awk它:
awk
从一个文件:
awk 'BEGIN{FS="####"} {print $3}' input_file
从一个变量:
awk 'BEGIN{FS="####"} {print $3}' <<< "$input_variable"