我想使用Bash
来执行此操作,并想知道是否存在可以独立构造的正则表达式,但是我会选择使用Linux工具。
我有一个带有几个按钮标签的XML文件,每个标签都有一个属性resource-id
<node
resource-id="com.android.packageinstaller:id/button_send"
class="android.widget.Button"
/>
<node
resource-id="com.android.packageinstaller:id/button_delete"
class="android.widget.Button"
/>
我想解析标签,该标签在属性resource-id
的属性值中包含一个子字符串,在我的情况下,子字符串为button_send
<node
resource-id="com.android.packageinstaller:id/button_send"
class="android.widget.Button"
/>
从那里,我将能够解析标签的其他属性值。