我需要帮助在
Bash中提取“@”符号和空格“”之间的字符串.
我正在使用Python Twitter Tools,输出如下:
430438229200740352 2014-02-03 14:30:45 CST <HorizonAwon> @SawBlastt @WereAutomatic 101 for me to join as well
我需要提取两个字符串:
SawBlastt
WereAutomatic
我还需要将它们设置为单独的变量.我已经尝试过使用sed和grep,但没有成功的结果.我真的坚持这个.非常感谢帮助.谢谢!
解决方法
您可以使用:
s='430438229200740352 2014-02-03 14:30:45 CST <HorizonAwon> @SawBlastt @WereAutomatic 101 for me to join as well' grep -oP '@\K[^ ]*' <<< "$s" SawBlastt WereAutomatic