A question about regular expressions

Source: Internet
Author: User
Problem: There is a string: "Python php ruby JavaScript jsonp perhapsphpisoutdated"
For this string, use pure to get all words with P but not ph

Output array [' Python ', ' javascript ', ' Jsonp ']

This question has been thought for a long time and has no idea.
My solution is to

var result = str.match(/\b\w*(?=p)\w*\b/g)                .filter((value)=>!/.*(?=ph)/.test(value))var result2 = str.match(  /\b((?!ph|\s).)*((p[^h\s]((?!ph|\s).)*)|p)\b/g  ) console.log(result2)

But it doesn't meet the requirements of pure.

There are Daniel in the group who gave such an answer.

Perfect operation

But I don't understand, I hope Daniel can help me interpret

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.