标签: regex unix expression
我正在寻找一个正则表达式来找到<之间的字符串。 >在unix中
例如
hello <en> this is a <test>
然后我需要得到结果
<en> <test>
答案 0 :(得分:1)
这很简单:
(<.*?>)
http://sqlfiddle.com/#!9/57543/2