The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
3answers
31k views

String negation using regular expressions

Is it possible to do string negation in regular expressions? I need to match all strings that do not contain the string "..". I know you can use ^[^\.]*$ to match all strings that do not contain "." ...
24
votes
3answers
5k views

What does !! (double exclamation point) mean?

In the code below, from a blog post by Alias, I noticed the use of the double exclamation point !!. I was wondering what it meant and where I could go in the future to find explanations for Perl ...
11
votes
4answers
10k views

Negation in Python

I'm trying to create a directory if the path doesn't exist, but the ! (not) operator doesn't work. I'm not sure how to negate in Python... What's the correct way to do this? if ...
8
votes
6answers
1k views

Algorithm for Negating Sentences

I was wondering if anyone was familiar with any attempts at algorithmic sentence negation. For example, given a sentence like "This book is good" provide any number of alternative sentences meaning ...
8
votes
5answers
2k views

Implementing logical negation with only bitwise operators (except !)

~ & ^ | + << >> are the only operations I can use Before I continue, this is a homework question, I've been stuck on this for a really long time. My original approach: I thought that ...
7
votes
1answer
2k views

how to pass a not like operator in a sqlalchemy ORM query

I've got a query: MyModel.query.filter(Mymodel.name.contains('a_string')) I need to do the same query but with the negation (a not like operator) but didn't find any operator matching my need in ...
6
votes
3answers
1k views

Django query negation

I know how to build filters and Q objects in django, but I don't know how to negate the operators that the API provides, for example for the contains operator I would like something like notcontains. ...
4
votes
1answer
742 views

Python regex negating metacharacters

Python metacharacter negation. After scouring the net and writing a few different syntaxes I'm out of ideas. Trying to rename some files. They have a year in the title e.g. [2002]. Some don't have ...
4
votes
1answer
169 views

swi-prolog negation

I've had a hard time searching for clear answers on negation in Prolog, so I apologize if this is an obvious question: I'm trying to write a simple code that will logically say that "X and Y love ...
3
votes
3answers
127 views

Negation operator and comparison

Lets take some code samples: ! 4 > 0; From C++ standard we know, that negation will be done first, than comparison. But if we expand this example a little: #include <iostream> class Test ...
3
votes
1answer
264 views

Is negation to prefer in conditions?

I have XML files that hold recordsets where a certain quantity sometimes equals 0. Now those recordsets I have to get rid of. I did the following. <?xml version="1.0" encoding="UTF-8"?> ...
2
votes
3answers
259 views

Why doesn't this CSS :not() declaration filter down?

I want to select spans that are not the descendants of a specific class, let's call it "no". Here's my CSS: div:not(.no) span{background-color:#00f;} Here's the HTML <div> ...
2
votes
1answer
325 views

Perl regex /foo|bar/ negation

/\d/ # contains a digit /^\D*$/ # doesn't contain a digit /[abc]/ # contains either the letter a, b, or c /^[^abc]*$/ # doesn't contain a, b, or c /foo|bar/ # contains foo or ...
2
votes
4answers
390 views

python3: How to get logical complement (negation) of a binary number, eg. '010' => '101'?

Maybe I'm missing something but I can't find a straightforward way to accomplish this simple task. When I go to negate a binary number through the "~" operator it returns a negative number due to the ...
2
votes
3answers
122 views

Prolog syntax issue, space after negation

I have a strange question with using negation in SWI Prolog. When I use the following code without a space after negation "\+", it gives an error: 2 ?- assert((only_child(X) :- ...
2
votes
5answers
1k views

Prolog Negation

I am trying to solve a simple query in Prolog that uses negation but I can't crack it. The query is "Find the categories that have never been sold". The knowledge base is as follows: ...
2
votes
2answers
572 views

negating javascript regex

I am trying to match a string containing a mix of digits and hyphenated digits, like a crossword answer specification, for example 1,2-2 or 1-1,3,4,2-2 /,?(([1-9]-[1-9])|([1-9]))/g is what I've come ...
1
vote
2answers
2k views

Negate Regex in MySQL rlike Expression

I want to match any line that does not end with 'CA' or 'CA[any number]'. How can I do that using rlike in MySQL? (Note it doesn't support ?! etc). Here's the regex for a positive match, I just ...
1
vote
2answers
210 views

Is logical negation of zero (!0) compiler dependent in C?

Recently I have come across an article which mentioned that the result of !0 is compiler dependent. The result can be either 1 or FF or FFFF and so on. As for C99 standard 6.5.3.3 Unary arithmetic ...
1
vote
2answers
87 views

Apache redirect Logical Negation ¬ to Tilde ~

I have a URL that I want to redirect however, I can't seem to enter the character into vim. The character is ¬ (Logical Negation) and I want to redirect it to ~ (Tilde). Redirect permanent /¬foo ...
1
vote
2answers
108 views

Prolog - Is this negation by failure correct?

Using ! and fail, I'm trying negation by failure. The method below however gives me the warning: Singleton variables: [X]. However, it seems to work so I'm wondering if there's anything wrong with ...
1
vote
3answers
85 views

“not” operator or negation in Prolog

Background I need to write a relation power(P) that looks through a list and decides if all but one element of P is zero. Here is what I have: %I have a relation called zero(P) which decides if ...
1
vote
2answers
2k views

caret/negate for a word in regular expression

[^a-zA-Z] - matches anything except a,b,c,...z , A, B, ..Z I want expression that matches anything except (abc) AND except (xyz) I want a regex for image tag I tried img.*src - it matches the ...
1
vote
1answer
91 views

Negation and testing for a unique set in Prolog

I've just started experimenting with Prolog, and I was trying to write a rule to find out whether a list contained only unique elements. I got it working in the second variation (by negating a ...
0
votes
2answers
45 views

Python regex for a text after an underscore, unless a specific word

Consider the following strings: server server_secure server_APAC_secure server_APAC server_US server_US_secure server_EU_secure server_ISRAEL The template is straightforward: The string server An ...
0
votes
2answers
250 views

Turn on leftmost bit of a Short

Original question changed. I want to bitwise turn off the left most bit of a Short value (&H8000) and leave the other bits as they are. Dim x = BitConverter.GetBytes(Short.MaxValue Or ...
0
votes
1answer
32 views

Space after negation in Javascript [closed]

This is a javascript coding style question. Is there any reason for putting a space after the negation operator? I've seen that in the source code of angularjs and I can't figure out if there is any ...
0
votes
1answer
124 views

MongoEngine - Query Operator for negation - Substitute for exclude()

I need to make a query with a negation. In Django I would use exclude() but regarding to the MongoEngine doc exclude means something different. Is there an query operator or a different function to ...
0
votes
2answers
228 views

prolog question find maximum using negation operator \+

I have got some values H, and I would like to find the maximum one using \+, how can i do it? maxValue(X) :- Get(Id, X), \+( Get(Id, Y), X < Y ). don't have a clue....please help, thanks!
0
votes
1answer
52 views

Double negation sql query

I was asked to do a query in sql using double negation. The question itself is asking for all the "sigla" and "disciplina "where the semestre_id is 21 and has at least 1 attribute "resposta"=5 table ...
0
votes
1answer
61 views

prolog negation \+

There are four baskets, and each with a unique color. I write a prolog program to tell the color oder based on some facts and rules. This is the .pl file: iright(L, R, [L | [R | _]]). iright(L, R, [_ ...
0
votes
1answer
166 views

Smarty Regular Expressions Negation regex_replace

Regular Expressions in smarty. I need to find and replace all different from src = "http:// I'm trying to use the function regex_replace:'/src="http/':"src=\"{$pageUrl}" Is there any sign of the ...
0
votes
1answer
88 views

alias `(not)/1` in prolog

I have recieved a piece of code for an assignment called exShell. In it, the code uses (not)/1 for negation, I have currently replaced all instances with (\+)/1 but I was wondering why that would be ...
0
votes
0answers
48 views

Lines in a File which Do Not Match a Multiline Pattern

I've got some super verbose Hibernate query output that I'm trying to analyze. I have my results down to the form SELECT a FROM b WHERE c SELECT d FROM e WHERE f SELECT a FROM b WHERE c which I'm ...
-1
votes
3answers
335 views

Negative form of isinstance() in Python

How would I use a negative form of Python's isinstance()? Normally negation would work something like x != 1 if x not in y if not a I just haven't seen an example with isinstance(), so I'd like ...