suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Regulärer Ausdruck zum Ersetzen des IMG-Bild-Tags durch Text [Bild]?

Originalinhalt:

<p class="demo1">
    11
    <img src="images/IconfollowQuestion2.png" alt="" >
    22
    <img src="images/banner.png" style="width:250px;">
    33
</p>

Zu erhaltende Ergebnisse

11[图片]22[图片]33

Wie schreibe ich einen solchen regulären Ausdruck mit js?

某草草某草草2778 Tage vor817

Antworte allen(4)Ich werde antworten

  • 大家讲道理

    大家讲道理2017-05-19 10:28:58

    string.replace(/<img(.*?)>/g, "[图片]")

    随便写了一个,不知道对不对

    加了个❓把正则表达式变为懒惰模式,会尽可能少地匹配,一次只匹配一个img。

    不加❓则为贪婪模式,会尽可能多地匹配,直接匹配所有的img。

    Antwort
    0
  • 给我你的怀抱

    给我你的怀抱2017-05-19 10:28:58

    str.replace(/<img[^>]*>/g, "[图片]"); 

    Antwort
    0
  • 滿天的星座

    滿天的星座2017-05-19 10:28:58

    string.replace(/<img.*?>/g,'[图片]')

    注意两点:(1)*? 为非贪婪模式。(2) g 全局匹配。

    Antwort
    0
  • 某草草

    某草草2017-05-19 10:28:58

    str.replace(/<img[^>]*>/g, "[图片]");

    Antwort
    0
  • StornierenAntwort