Help with regular expression

T

toulax

How can I make a regular expression that will match everything, unless
it contains a certain string then it will match nothing.

For instance, let's say it should not match "bar", then:

"foo" => "foo"
"bar " => nil
"foobar" => nil

Thanks in advance
 
P

Philip Hallstrom

How can I make a regular expression that will match everything, unless
it contains a certain string then it will match nothing.

For instance, let's say it should not match "bar", then:

"foo" => "foo"
"bar " => nil
"foobar" => nil

some_string !~ /bar/

-philip
 
T

toulax

some_string !~ /bar/

-philip

Yeah, that's the easy way, is it possible to do that with the regular
expression alone and not use !~? The reason is because this is not
exactly for Ruby and I don't have another option.

Thanks
 
A

Axel Etzold

I think what you want is what's called negative lookahead.
I don't think it's available in Ruby's Regexps anyway,
and resorting to Oniguruma isn't an option as you don't
want to use Ruby anyway. Maybe you just break it down into
more steps as here:

http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/131694

Or you look for negative lookahead here:

http://www.regular-expressions.info/lookaround.html

(provided the language you'll eventually use sports this feature
at all).

Best regards,

Axel
 
J

Jesse Hk

Am I missing something here? Why not just test for equality?


irb(main):001:0> "foo" == "foo"
=> true
irb(main):002:0> "foo" == "bar"
=> false
 
D

dblack

Y

yermej

I think what you want is what's called negative lookahead.
I don't think it's available in Ruby's Regexps anyway,
and resorting to Oniguruma isn't an option as you don't
want to use Ruby anyway. Maybe you just break it down into
more steps as here:

http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/131694

Or you look for negative lookahead here:

http://www.regular-expressions.info/lookaround.html

(provided the language you'll eventually use sports this feature
at all).

Best regards,

Axel

Positive and negative lookahead work in Ruby Regexp. I guess that
doesn't help the original poster, but FYI and all.

Jeremy
 
S

Stephen Ball

Hi --


That doesn't cover the case where the string includes the substring
"bar" but also includes other characters.


David

In that case it still works, so we have:

"foo" => "foo"

irb(main):001:0> "foo" == "foo"
=> true

"bar " => nil

irb(main):002:0> "foo" == "bar"
=> false

"foobar" => nil

irb(main):003:0> "foo" == "foobar"
=> false

-- Stephen
 
Y

yermej

Like I said it has to be a regular expression, nothing else, any
ideas?

As Axel said, you need to use a regex with negative lookahead. This
should work:
/b(?!ar)/
as long as whichever language/system you're using supports it. Maybe
there's a better group or forum for your question if you're not using
Ruby.

I would have thought this would work:
/.*(?!bar)/
but it doesn't in Ruby. I would take that to mean 0 or more of any
character not followed by bar, but I guess that's not the case. I
(obviously) don't understand negative lookahead all that well. Can
anybody explain?

Jeremy
 
T

toulax

As Axel said, you need to use a regex with negative lookahead. This
should work:
/b(?!ar)/
as long as whichever language/system you're using supports it. Maybe
there's a better group or forum for your question if you're not using
Ruby.

I would have thought this would work:
/.*(?!bar)/
but it doesn't in Ruby. I would take that to mean 0 or more of any
character not followed by bar, but I guess that's not the case. I
(obviously) don't understand negative lookahead all that well. Can
anybody explain?

Jeremy

Thanks Jeremy, as you said this doesn't seem to work, but thanks for
pointing me to the right track. Also if anyone can suggest a group
more specific to regexp I'm all ears.
 
Y

yermej

As Axel said, you need to use a regex with negative lookahead. This
should work:
/b(?!ar)/
as long as whichever language/system you're using supports it. Maybe
there's a better group or forum for your question if you're not using
Ruby.

I would have thought this would work:
/.*(?!bar)/
but it doesn't in Ruby. I would take that to mean 0 or more of any
character not followed by bar, but I guess that's not the case. I
(obviously) don't understand negative lookahead all that well. Can
anybody explain?

Jeremy

Sorry, but I was wrong. I /b(?!ar)/ isn't right because it would only
match a string if it contains a 'b'. I would have thought /.*(?!bar)/,
but as I said, that doesn't work in Ruby and probably shouldn't now
that I've thought about it more.

Probably just ignore everything I've said except for the fact that
you'll need negative lookahead. I think. Oh, and the part about asking
in a more appropriate group if you aren't really looking for a Ruby
regex.

Jeremy
 
R

Robert Klemme

Like I said it has to be a regular expression, nothing else, any
ideas?

Please disclose more detail on the environment you are using and what
exactly you want to do. Otherwise it's difficult to come up with
suggestions. If it is a different programming language it might also be
a good idea to post to a specific forum for that language.

Kind regards

robert
 
D

dblack

Hi --

In that case it still works, so we have:

"foo" => "foo"

irb(main):001:0> "foo" == "foo"
=> true

"bar " => nil

irb(main):002:0> "foo" == "bar"
=> false

"foobar" => nil

irb(main):003:0> "foo" == "foobar"
=> false

True; I got it backwards. What it really doesn't cover is the case of
a string that doesn't contain "bar" but isn't equal to "foo":

"foo" == "abcdef" # false, but should be true because "abcdef"
# does not include "bar"


David

--
* Books:
RAILS ROUTING (new! http://www.awprofessional.com/title/0321509242)
RUBY FOR RAILS (http://www.manning.com/black)
* Ruby/Rails training
& consulting: Ruby Power and Light, LLC (http://www.rubypal.com)
 
A

Axel Etzold

Thanks Jeremy, as you said this doesn't seem to work, but thanks for
pointing me to the right track. Also if anyone can suggest a group
more specific to regexp I'm all ears.
One additional source for Regexp in general and in depth is the book by Jeffrey Friedl,"Mastering Regular Expressions", published at O'Reilly.
I have to admit that I couldn't solve the problem you were mentioning
in some reasonable time -- and didn't really get a concise clue from
cross-reading that book either - even though it's considered the encyclopedia
of the subject.
I don't really understand why you can't do the search in two steps:

1. search for everything that contains bar as a substring and
2 . eliminate it from all results ...?

Best regards,

Axel
 
V

Verno Miller

How can I make a regular expression that will match everything, unless
it contains a certain string then it will match nothing.

For instance, let's say it should not match "bar", then:

"foo" => "foo"
"bar " => nil
"foobar" => nil

Thanks in advance


How about a negative look-ahead like the one used here
http://www.ruby-forum.com/topic/37609 ?

If the string contains "bar", the regex matches the rest of the string
that does contain no further "bar" substring, i.e. /ar.*$/.

ruby -e 'r = /(?!.*bar).*/; puts r.match("foobarxxxfoobarxxx"); puts
r.match("foorab"); puts r.match("yyybarbar")'

=> arxxx
=> foorab
=> ar

Cheers

verno
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,999
Messages
2,570,243
Members
46,836
Latest member
login dogas

Latest Threads

Top