Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Regular expression for *not* a *sequence* of characters
QtWS25 Last Chance

Regular expression for *not* a *sequence* of characters

Scheduled Pinned Locked Moved Solved General and Desktop
21 Posts 3 Posters 11.1k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • V VRonin
    2 Aug 2018, 07:09

    @JonB said in Regular expression for *not* a *sequence* of characters:

    OK, why as few times as possible?

    That's the effect of ? after +. It make the match non-greedy. If you remove the question mark it will behave as you are expecting

    J Offline
    J Offline
    JonB
    wrote on 2 Aug 2018, 07:47 last edited by
    #5

    @VRonin
    I don't think sed accepts that construct --- regular expressions have got out of hand :)
    Thank you very much, that's a very useful one to know.

    1 Reply Last reply
    0
    • V Offline
      V Offline
      VRonin
      wrote on 2 Aug 2018, 07:59 last edited by
      #6

      Python uses:

      regular expression matching operations similar to those found in Perl

      just as QRegularExpression does.

      https://regex101.com actually has an explicit python simulator

      "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
      ~Napoleon Bonaparte

      On a crusade to banish setIndexWidget() from the holy land of Qt

      J 2 Replies Last reply 2 Aug 2018, 08:06
      1
      • V VRonin
        2 Aug 2018, 07:59

        Python uses:

        regular expression matching operations similar to those found in Perl

        just as QRegularExpression does.

        https://regex101.com actually has an explicit python simulator

        J Offline
        J Offline
        JonB
        wrote on 2 Aug 2018, 08:06 last edited by
        #7

        @VRonin
        Yes, I do realize Python/Perl & others now use more advanced regular expressions than sed did. In my day we didn't even yet have the + operator, not sure about ?, but certainly not +? being something special. So I simply did not know about it. Being able to match fewest is really useful, of course.

        1 Reply Last reply
        0
        • V VRonin
          2 Aug 2018, 07:59

          Python uses:

          regular expression matching operations similar to those found in Perl

          just as QRegularExpression does.

          https://regex101.com actually has an explicit python simulator

          J Offline
          J Offline
          JonB
          wrote on 2 Aug 2018, 08:12 last edited by JonB 8 Feb 2018, 08:15
          #8

          @VRonin
          As an exercise, in terms of what I had had in mind without knowing about +?, how would you write, say, a matcher which wanted "2 asterisks followed by anything to end which is not another 2 asterisks?". That's what I thought we would need. So something like:

          abc ** this is a * match
          abc ** this does not match ** but I guess this * bit does
          

          ?

          1 Reply Last reply
          0
          • V Offline
            V Offline
            VRonin
            wrote on 2 Aug 2018, 08:19 last edited by
            #9

            Something like https://regex101.com/r/VF5zir/1 ?

            "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
            ~Napoleon Bonaparte

            On a crusade to banish setIndexWidget() from the holy land of Qt

            J 1 Reply Last reply 2 Aug 2018, 08:36
            2
            • V VRonin
              2 Aug 2018, 08:19

              Something like https://regex101.com/r/VF5zir/1 ?

              J Offline
              J Offline
              JonB
              wrote on 2 Aug 2018, 08:36 last edited by JonB 8 Feb 2018, 08:39
              #10

              @VRonin
              Yep. I see how you've done that one, again I didn't think of doing it that way.

              Let me try one more time: what I really want to know is just how you write "whole line [say] must not include a multi-char sequence"?

              I know how to do "not a single char": [^abc]. How do you do "not a sequence of chars"? Sort of like ^(this sequence), which I know does not work. Hence the original title of this thread.

              1 Reply Last reply
              0
              • V Offline
                V Offline
                VRonin
                wrote on 2 Aug 2018, 08:53 last edited by
                #11

                @JonB said in Regular expression for *not* a *sequence* of characters:

                How do you do "not a sequence of chars"?

                RegExp does not have (and probably never will) this construct. The argument is that it can easily be inverted from the calling code, i.e. write the regex that matches the sequence and then instead of if(regexp.match()) you'd use if(!regexp.match())

                "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                ~Napoleon Bonaparte

                On a crusade to banish setIndexWidget() from the holy land of Qt

                J 1 Reply Last reply 2 Aug 2018, 09:04
                1
                • V VRonin
                  2 Aug 2018, 08:53

                  @JonB said in Regular expression for *not* a *sequence* of characters:

                  How do you do "not a sequence of chars"?

                  RegExp does not have (and probably never will) this construct. The argument is that it can easily be inverted from the calling code, i.e. write the regex that matches the sequence and then instead of if(regexp.match()) you'd use if(!regexp.match())

                  J Offline
                  J Offline
                  JonB
                  wrote on 2 Aug 2018, 09:04 last edited by JonB 8 Feb 2018, 09:17
                  #12

                  @VRonin
                  Ah, now we're getting somewhere --- that might explain why I don't know how to do it! I thought it could be done using one of these new-fangled "negative lookahead/behind" constructs, but no? You've set me a challenge now... :)

                  It seems strange to me that reg exs can cope with "not one character" but not with "not multiple characters".

                  I know I can do it "in code" as you have shown. But Qt has various places which allow a reg ex filter/matcher, e.g. a QLineEdit validator which I think has to match for the validation to succeed. I could use [^*] to reject any line with * in it. But to reject lines which have ** in them, you're saying I cannot use a plain reg ex validator string and have to go write some kind of code (I think the Qt validators allow for that, but that's not my point)?

                  EDIT

                  (?<!foo) Negative Lookbehind Asserts that what immediately precedes the current position in the string is not foo

                  This is probably what I was thinking about. So, for example, I presume:

                  ^.*(?<!\*\*)$
                  

                  rejects lines which end with **, which is "rejecting by a sequence of characters"? [Yep, tested.] Can we expand on this to implement the "not" in-line instead?

                  K 1 Reply Last reply 2 Aug 2018, 09:27
                  0
                  • J JonB
                    2 Aug 2018, 09:04

                    @VRonin
                    Ah, now we're getting somewhere --- that might explain why I don't know how to do it! I thought it could be done using one of these new-fangled "negative lookahead/behind" constructs, but no? You've set me a challenge now... :)

                    It seems strange to me that reg exs can cope with "not one character" but not with "not multiple characters".

                    I know I can do it "in code" as you have shown. But Qt has various places which allow a reg ex filter/matcher, e.g. a QLineEdit validator which I think has to match for the validation to succeed. I could use [^*] to reject any line with * in it. But to reject lines which have ** in them, you're saying I cannot use a plain reg ex validator string and have to go write some kind of code (I think the Qt validators allow for that, but that's not my point)?

                    EDIT

                    (?<!foo) Negative Lookbehind Asserts that what immediately precedes the current position in the string is not foo

                    This is probably what I was thinking about. So, for example, I presume:

                    ^.*(?<!\*\*)$
                    

                    rejects lines which end with **, which is "rejecting by a sequence of characters"? [Yep, tested.] Can we expand on this to implement the "not" in-line instead?

                    K Offline
                    K Offline
                    kshegunov
                    Moderators
                    wrote on 2 Aug 2018, 09:27 last edited by
                    #13

                    Is this the thing you're after?

                    Read and abide by the Qt Code of Conduct

                    V J 2 Replies Last reply 2 Aug 2018, 09:39
                    2
                    • K kshegunov
                      2 Aug 2018, 09:27

                      Is this the thing you're after?

                      V Offline
                      V Offline
                      VRonin
                      wrote on 2 Aug 2018, 09:39 last edited by
                      #14

                      @kshegunov That works because of ^/$ you can't match abc ** this is matching ** but not this ** and this is a new one ** def where the sequence to exclude is **

                      "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                      ~Napoleon Bonaparte

                      On a crusade to banish setIndexWidget() from the holy land of Qt

                      K 1 Reply Last reply 3 Aug 2018, 08:57
                      0
                      • K kshegunov
                        2 Aug 2018, 09:27

                        Is this the thing you're after?

                        J Offline
                        J Offline
                        JonB
                        wrote on 2 Aug 2018, 10:02 last edited by JonB 8 Feb 2018, 10:25
                        #15

                        @kshegunov , @VRonin
                        The following is probably what you're both saying. But it is possible to "only match a complete line which does not contain ** anywhere in it" (e.g. for a QLineEdit validator) by (https://stackoverflow.com/a/406408/489865, also an example at https://www.regextester.com/15, they call it "Match string not containing string"):

                        ^((?!\*\*).)*$
                        

                        Which I certainly never knew!

                        @VRonin
                        I don't know what you mean by your last post (yes, the reg ex does include ^/$), would you care to clarify? I suspect it's to do with "group capturing as opposed to whole match", but not at all sure.

                        1 Reply Last reply
                        0
                        • V VRonin
                          2 Aug 2018, 09:39

                          @kshegunov That works because of ^/$ you can't match abc ** this is matching ** but not this ** and this is a new one ** def where the sequence to exclude is **

                          K Offline
                          K Offline
                          kshegunov
                          Moderators
                          wrote on 3 Aug 2018, 08:57 last edited by
                          #16

                          I haven't tried to. As far as understood the question - match lines that do not contain.

                          @JonB
                          Pretty much the same idea as what I used.

                          Read and abide by the Qt Code of Conduct

                          J 1 Reply Last reply 3 Aug 2018, 09:49
                          1
                          • K kshegunov
                            3 Aug 2018, 08:57

                            I haven't tried to. As far as understood the question - match lines that do not contain.

                            @JonB
                            Pretty much the same idea as what I used.

                            J Offline
                            J Offline
                            JonB
                            wrote on 3 Aug 2018, 09:49 last edited by
                            #17

                            @kshegunov
                            Yes it is what you used (though your example really confused me with its [^t]|t in it, did you just complicate it to test me out? ;-) )

                            There is something in @VRonin 's final statement where he accepts use of ^/$ but then says "you can't match..." where I do not know what he is trying to convey...

                            K 1 Reply Last reply 3 Aug 2018, 09:53
                            0
                            • J JonB
                              3 Aug 2018, 09:49

                              @kshegunov
                              Yes it is what you used (though your example really confused me with its [^t]|t in it, did you just complicate it to test me out? ;-) )

                              There is something in @VRonin 's final statement where he accepts use of ^/$ but then says "you can't match..." where I do not know what he is trying to convey...

                              K Offline
                              K Offline
                              kshegunov
                              Moderators
                              wrote on 3 Aug 2018, 09:53 last edited by kshegunov 8 Mar 2018, 09:55
                              #18

                              @JonB said in Regular expression for *not* a *sequence* of characters:

                              Yes it is what you used (though your example really confused me with its [^t]|t in it, did you just complicate it to test me out? ;-) )

                              Surely not. It just seemed more natural to me - match anything but t OR t that's not followed by "[t]his thing" ... seemed like kind of the human way of doing it ;P

                              There is something in @VRonin 's final statement where he accepts use of ^/$ but then says "you can't match..." where I do not know what he is trying to convey...

                              I think he just misunderstood the question and wants to match stuff that's between ** pairs ...

                              Read and abide by the Qt Code of Conduct

                              J 1 Reply Last reply 3 Aug 2018, 10:09
                              0
                              • K kshegunov
                                3 Aug 2018, 09:53

                                @JonB said in Regular expression for *not* a *sequence* of characters:

                                Yes it is what you used (though your example really confused me with its [^t]|t in it, did you just complicate it to test me out? ;-) )

                                Surely not. It just seemed more natural to me - match anything but t OR t that's not followed by "[t]his thing" ... seemed like kind of the human way of doing it ;P

                                There is something in @VRonin 's final statement where he accepts use of ^/$ but then says "you can't match..." where I do not know what he is trying to convey...

                                I think he just misunderstood the question and wants to match stuff that's between ** pairs ...

                                J Offline
                                J Offline
                                JonB
                                wrote on 3 Aug 2018, 10:09 last edited by JonB 8 Mar 2018, 10:10
                                #19

                                @kshegunov
                                Surely. Have you heard of "KISS"? :-; When trying to illustrate your use of ((?!.....).)*, which is what I needed to learn as the solution, do you think adding the extra stuff would make it easy for me to understand which bit was the principle? :)

                                I always respect what @VRonin writes. But when he said:

                                RegExp does not have (and probably never will) this construct.

                                it now seems to me that it does have such a construct, unless he explains just what he meant...

                                V 1 Reply Last reply 3 Aug 2018, 10:23
                                0
                                • J JonB
                                  3 Aug 2018, 10:09

                                  @kshegunov
                                  Surely. Have you heard of "KISS"? :-; When trying to illustrate your use of ((?!.....).)*, which is what I needed to learn as the solution, do you think adding the extra stuff would make it easy for me to understand which bit was the principle? :)

                                  I always respect what @VRonin writes. But when he said:

                                  RegExp does not have (and probably never will) this construct.

                                  it now seems to me that it does have such a construct, unless he explains just what he meant...

                                  V Offline
                                  V Offline
                                  VRonin
                                  wrote on 3 Aug 2018, 10:23 last edited by VRonin 8 Mar 2018, 10:26
                                  #20

                                  @JonB said in Regular expression for *not* a *sequence* of characters:

                                  it now seems to me that it does have such a construct

                                  It does not have a generic way. It has a "line does not contain" or "document does not contain". Say you want to capture stuff inside ** (so \*\*(.+?)\*\*) but exclude the capture if .+? matches foo. I don't think that is possible.

                                  Forget what I said.

                                  "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                                  ~Napoleon Bonaparte

                                  On a crusade to banish setIndexWidget() from the holy land of Qt

                                  J 1 Reply Last reply 3 Aug 2018, 10:40
                                  1
                                  • V VRonin
                                    3 Aug 2018, 10:23

                                    @JonB said in Regular expression for *not* a *sequence* of characters:

                                    it now seems to me that it does have such a construct

                                    It does not have a generic way. It has a "line does not contain" or "document does not contain". Say you want to capture stuff inside ** (so \*\*(.+?)\*\*) but exclude the capture if .+? matches foo. I don't think that is possible.

                                    Forget what I said.

                                    J Offline
                                    J Offline
                                    JonB
                                    wrote on 3 Aug 2018, 10:40 last edited by
                                    #21

                                    @VRonin , @kshegunov
                                    Thank you both very much for your time & input. I have learnt a lot about these "advanced" regular expressions now. I will not close this thread.

                                    1 Reply Last reply
                                    0

                                    14/21

                                    2 Aug 2018, 09:39

                                    • Login

                                    • Login or register to search.
                                    14 out of 21
                                    • First post
                                      14/21
                                      Last post
                                    0
                                    • Categories
                                    • Recent
                                    • Tags
                                    • Popular
                                    • Users
                                    • Groups
                                    • Search
                                    • Get Qt Extensions
                                    • Unsolved