scratch/content/html/fr/blog/2010-02-16-All-but-something-regexp--2-.md
Yann Esposito (Yogsototh) c27ef7e205 new version working (almost)
2010-04-15 11:45:50 +02:00

3.7 KiB

isHidden menupriority kind created_at title multiTitle multiDescription tags
false 1 article 2010-02-16T10:33:21+02:00 All but something regexp (2)
fr en
All but something regexp (2) All but something regexp (2)
fr en
pas de description. How to match internal shortest string possible with regexp? Here are some solutions.
regexp
regular expression

In my previous post I had given some trick to match all except something. On the same idea, the trick to match the smallest possible string. Say you want to match the string between 'a' and 'b', for example, you want to match:

a.....a......b..b..a....a....b...

Here are two common errors and a solution:

/a.*b/
a.....a......b..b..a....a....b...
/a.*?b/
a.....a......b..b..a....a....b...
/a[^ab]*b/
a.....a......b..b..a....a....b...

The first error is to use the evil .*. Because you will match from the first to the last. The next natural way, is to change the greediness. But it is not enough as you will match from the first a to the first b. Then a simple constatation is that our matching string shouldn't contain any a nor b. Which lead to the last elegant solution.

Until now, that was, easy. Now, how do you manage when instead of a you have a string?

Say you want to match:

  • ...
  • This is a bit difficult. You need to match

  • [anything not containing
  • ]
  • The first method would be to use the same reasoning as in my previous post. Here is a first try:

  • ([^<]|<[^l]|])*
  • But what about the following string:

  • ...
  • That string should not match. This is why if we really want to match it correctly we need to add:

  • ([^<]|<[^l]|])*(|<|
  • Yes a bit complicated. But what if the string I wanted to match was even longer?

    Here is the algorithm way to handle this easily. You reduce the problem to the first one letter matching:

    # transform a simple randomly choosen character # to an unique ID # (you should verify the identifier is REALLY unique) # beware the unique ID must not contain the # choosen character s/X/_was_x_/g s/Y/_was_y_/g

    transform the long string in this simple character

    s/

  • /X/g s/</li>/Y/g

    use the first method

    s/X([^X]*)Y//g

    retransform choosen letter by string

    s/X/

  • /g s/Y/</li>/g

    retransform the choosen character back

    s/was_x/X/g s/was_y/Y/g

  • And it works in only 9 lines for any beginning and ending string. This solution should look less I AM THE GREAT REGEXP M45T3R, URAN00B, but is more convenient in my humble opinion. Further more, using this last solution prove you master regexp, because you know it is difficult to manage such problems with only a regexp.


    I know I used an HTML syntax example, but in my real life usage, I needed to match between ``. And sometimes the string could finish with e::.