Sed,获取字符串和值

时间:2017-09-08 14:25:42

标签: sed

如何使用sed从大html文件中获取此值87297779?

它唯一的代码片段,非常大,并且有很多代码。 '在代码中,但只有一个匹配 " summoner.renewBtn.start &#34 ;.我需要像这样的sed代码:

使用summoner.renewBtn.start查找字符串 - >从'中获取价值' - >结束搜索

CODE:

<div class="Buttons">
                <button class="Button SemiRound Blue" id="SummonerRefreshButton" onclick="$.OP.GG.summoner.renewBtn.start(this, '87297779');" style="position: relative;">
            Update          </button>

好的我找到了:

grep -r "$.OP.GG.summoner.renewBtn.start(this," "FILE" | cut -d "'" -f2 | cut -d "'" -f1

0 个答案:

没有答案