awk 或 grep 问题

发布于 2024-10-18 09:05:40 字数 185 浏览 3 评论 0原文

我有这个数据文件

[abc]
def
ghi
[jkl]
[mno]

来自这个文件;我可以运行 grep 并轻松获取所有包含“[”的行。如何获取“[]”内的文本内容?

例如:

abc
jkl
mno

谢谢

I have this datafile

[abc]
def
ghi
[jkl]
[mno]

From this file; i can run grep and easily get all lines that have "[" in them. How can I get the contents of text inside "[]".

For example:

abc
jkl
mno

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

新人笑 2024-10-25 09:05:40

尝试一下:

sed -n 's/\[\([^]]*\)\]/\1/p'

或者

awk -F "[][]" '$2 != "" {print $2}'

或者

grep -Po '(?<=\[)[^]]*(?=])'

Give this a try:

sed -n 's/\[\([^]]*\)\]/\1/p'

or

awk -F "[][]" '$2 != "" {print $2}'

or

grep -Po '(?<=\[)[^]]*(?=])'
私野 2024-10-25 09:05:40
sed -n 's/\[\(.*\)\]/\1/p' file

说明: -n 禁止将每行打印到 STDOUT,但正则表达式末尾的 /p 重新启用此行为,导致打印所有匹配的行。正则表达式本身匹配括号之间的所有内容,并用它替换整行。

sed -n 's/\[\(.*\)\]/\1/p' file

Explanation: -n suppresses the printing of each line to STDOUT, but the /p at the end of the regex re-enables this behavior causing all matching lines to be printed. The regex itself matches everything between brackets and replaces the entire line with it.

a√萤火虫的光℡ 2024-10-25 09:05:40

grep“\[”| sed -e 's/\[//' -e 's/\]//'

grep "\[" | sed -e 's/\[//' -e 's/\]//'

笑梦风尘 2024-10-25 09:05:40

以下是您如何使用 awk

$ cat file
[abc]
def [ xxx]
ghi
[jkl]
[mno]
[zz
zzzz]


$ awk 'BEGIN{RS="]";FS="["}/\[/{print $NF }' file
abc
 xxx
jkl
mno
zz
zzzz

Ruby(1.9+)

 ruby -0777 -ne 'puts $_.scan(/\[(.*?)\]/m)' file

来完成此操作,或者您也可以仅使用 shell 来完成此操作

$ var=$(<file)
$ IFS="]"
$ set -- $var
$ for i in $@; do echo ${i##*[}; done

here's how you can do it with awk

$ cat file
[abc]
def [ xxx]
ghi
[jkl]
[mno]
[zz
zzzz]


$ awk 'BEGIN{RS="]";FS="["}/\[/{print $NF }' file
abc
 xxx
jkl
mno
zz
zzzz

Ruby(1.9+)

 ruby -0777 -ne 'puts $_.scan(/\[(.*?)\]/m)' file

Or you can do it with just the shell

$ var=$(<file)
$ IFS="]"
$ set -- $var
$ for i in $@; do echo ${i##*[}; done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文