Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <pre><code>^(?:[^#&lt;]*(&lt;[\w\W]+&gt;)[^&gt;]*$|#([\w\-]*)$) Assert position at the start of the string «^» Match the regular expression below «(?:[^#&lt;]*(&lt;[\w\W]+&gt;)[^&gt;]*$|#([\w\-]*)$)» Match either the regular expression below (attempting the next alternative only if this one fails) «[^#&lt;]*(&lt;[\w\W]+&gt;)[^&gt;]*$» Match a single character NOT present in the list "#&lt;" «[^#&lt;]*» Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*» Match the regular expression below and capture its match into backreference number 1 «(&lt;[\w\W]+&gt;)» Match the character "&lt;" literally «&lt;» Match a single character present in the list below «[\w\W]+» Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+» Match a single character that is a "word character" (letters, digits, etc.) «\w» Match a single character that is a "non-word character" «\W» Match the character "&gt;" literally «&gt;» Match any character that is not a "&gt;" «[^&gt;]*» Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*» Assert position at the end of the string (or before the line break at the end of the string, if any) «$» Or match regular expression number 2 below (the entire group fails if this one fails to match) «#([\w\-]*)$» Match the character "#" literally «#» Match the regular expression below and capture its match into backreference number 2 «([\w\-]*)» Match a single character present in the list below «[\w\-]*» Between zero and unlimited times, as many times as possible, giving back as needed (greedy) «*» Match a single character that is a "word character" (letters, digits, etc.) «\w» A - character «\-» Assert position at the end of the string (or before the line break at the end of the string, if any) «$» Created with RegexBuddy </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload