recherche

Maison  >  Questions et réponses  >  le corps du texte

php - 正则表达式匹配问题

想写一个正则表达式匹配字符串中部分空格,但是又想排除其他空格字符,
ex:

对于文化对人的影响的论述?<br>      3,  对于传统文化对影响是什么?<img src='http:  '  onerror=\"this.src  =  window.ROOT_URL +image.png>

想匹配img标签外的空格符,而排除img内的空格符,请问正则表达式该怎么写?

黄舟黄舟2803 Il y a quelques jours680

répondre à tous(3)je répondrai

  • 伊谢尔伦

    伊谢尔伦2017-04-10 17:33:58

    试试这个:

    /(\s)(?![^<]*>)/

    :)

    répondre
    0
  • PHPz

    PHPz2017-04-10 17:33:58

    ([\u3000\s]*)(?![^<]*>)/g

    这个更全点吧 包括全角 |$ 是为什么?

    répondre
    0
  • PHP中文网

    PHP中文网2017-04-10 17:33:58

      /(\s)(?![^<img]*>)/

    répondre
    0
  • Annulerrépondre