Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
3k 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 ...
14
votes
3answers
11k 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 "." ...
8
votes
6answers
674 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 ...
5
votes
5answers
411 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 !x ...
4
votes
1answer
62 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
3answers
461 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. ...
3
votes
1answer
84 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
74 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
2answers
60 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 ...
2
votes
4answers
96 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
5answers
160 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
1answer
515 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 ...
1
vote
2answers
115 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
4answers
1k 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 ...
1
vote
2answers
551 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 ...
0
votes
2answers
117 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
2answers
172 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
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 ...