4129 links
740 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
7 results tagged regex x
  • URL > Valid URL (RFC 3986) | Regex DB
    /
    # protocol user host-ip port path path path querystring fragment
    ^
    #protocol
    (?:(?<scheme>[a-zA-Z][a-zA-Z\d+-.]*):)?
    (?:
      (?:
        (?:
            \/\/
            (?:
                #userinfo
                (?:((?:[a-zA-Z\d\-._~\!$&'()*+,;=%]*)(?::(?:[a-zA-Z\d\-._~\!$&'()*+,;=:%]*))?)@)?
                #host-ip
                ((?:[a-zA-Z\d-.%]+)|(?:\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|(?:\[(?:[a-fA-F\d.:]+)\]))?
                #port
                (?::(\d*))?
            )
        )
        #slash-path
        (
            (?:\/[a-zA-Z\d\-._~\!$&'()*+,;=:@%]*)*
        )
      )
     #slash-path
     |(\/(?:(?:[a-zA-Z\d\-._~\!$&'()*+,;=:@%]+(?:\/[a-zA-Z\d\-._~\!$&'()*+,;=:@%]*)*))?)
     #path
     |([a-zA-Z\d\-._~\!$&'()*+,;=:@%]+(?:\/[a-zA-Z\d\-._~\!$&'()*+,;=:@%]*)*)
    )?
    #querystring
    (?:\?([a-zA-Z\d\-._~\!$&'()*+,;=:@%\/?]*))?
    #fragment
    (?:\#([a-zA-Z\d\-._~\!$&'()*+,;=:@%\/?]*))?
    $
    /x
    December 30, 2022 01:35:00 PM GMT+01:00 * - permalink -
    QRCode
    - https://rgxdb.com/r/2MQXJD5
    url rfc regex
  • URL > Valid URL (RFC 3986) (Advanced) | Regex DB
    /
    # allow multiple groups with the same name
    (?J)
    # protocol user host-ip port path path path querystring fragment
    ^
    #protocol
    (?:(?<scheme>[a-zA-Z][a-zA-Z\d+-.]*):)?
    (?|
      #slash-slash
      \/\/
      #userinfo
      (?:
         #user
         (?<user>[a-zA-Z\d\-._~\!$&'()*+,;=%]*)
         #password
         (?::(?<pass>[a-zA-Z\d\-._~\!$&'()*+,;=:%]*))?
      @)?
      #host-ip
      (?<host>(?:[a-zA-Z\d-.%]+)|(?:\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})|(?:\[(?:[a-fA-F\d.:]+)\]))?
      #port
      (?::(?<port>\d*))?
      #slash-path
      (?<path>
          (?:\/    [a-zA-Z\d\-._~\!$&'()*+,;=:@%]*   )*
      )
    
      #slash-path
      |(?<user>)(?<pass>)(?<host>)(?<port>)
       (?<path>\/  [a-zA-Z\d\-._~\!$&'()*+,;=:@%]+(?:\/[a-zA-Z\d\-._~\!$&'()*+,;=:@%]*)*)?
    
      #path
      |(?<user>)(?<pass>)(?<host>)(?<port>)
       (?<path>    [a-zA-Z\d\-._~\!$&'()*+,;=:@%]+(?:\/[a-zA-Z\d\-._~\!$&'()*+,;=:@%]*)*)
    
    )?
    #querystring
    (?:\?(?<query>[a-zA-Z\d\-._~\!$&'()*+,;=:@%\/?]*))?
    #fragment
    (?:\#(?<fragment>[a-zA-Z\d\-._~\!$&'()*+,;=:@%\/?]*))?
    $
    /x
    December 30, 2022 01:34:20 PM GMT+01:00 * - permalink -
    QRCode
    - https://rgxdb.com/r/5JXUI5A2
    url rfc regex
  • learn-regex/README-fr.md at master · zeeshanu/learn-regex
    September 29, 2017 04:28:02 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/zeeshanu/learn-regex/blob/master/README-fr.md
    regex regexp
  • Regular expression (regex) performance: The fundamental guide — / org.site-reliability — Medium
    January 18, 2016 04:02:07 PM GMT+01:00 * - permalink -
    QRCode
    - https://site-reliability.org/regular-expression-regex-performance-the-fundamental-guide-3d39e6af33af?_hsenc=p2ANqtz--cNA6ssPNBlGss1q8_-k_jNub6Fkemx0ZU29J86sPwrTU20PnR5qapQoOWh8Cq-cCFENQ1kgqspgx6-4UT3A7QPXlIsQ&_hsmi=25011734#.du4eiimrl
    regex
  • RegexOne - Learn Regular Expressions - Lesson 2: The Dot
    January 18, 2016 04:02:01 PM GMT+01:00 * - permalink -
    QRCode
    - http://regexone.com/lesson/wildcards_dot
    regex
  • thumbnail
    Sed - Expressions régulières

    une petite cheatsheet sur les regexp

    February 13, 2014 04:11:22 PM GMT+01:00 - permalink -
    QRCode
    - http://www.facilysoft.net/index.php?option=com_content&view=article&id=13:sed
    regex regexp linux
  • thumbnail
    Une regex pour savoir si un nombre est premier - lkdjiin's blog

    faut que je prenne le temps de décortiquer la regex :-)

    November 7, 2013 08:46:27 AM GMT+01:00 - permalink -
    QRCode
    - http://lkdjiin.github.io/blog/2013/11/05/une-regex-pour-savoir-si-un-nombre-est-premier/
    tool regex
Links per page: 20 50 100
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation