English 中文(简体)
检查字符串是 X 还是不是 X
原标题:Check if a string is X or is not X
  • 时间:2012-05-23 08:04:36
  •  标签:
  • regex

我可以检查字符串是否等于带有正则表达式的给定关键字。 例如 :

Regex: /^hello$/
String: hello
Result: matches, as expected

Regex: /^goodbye$/
String: goodbye
Result: matches, as expected

Regex: /^bye$/
String: bye bye
Result: does not match, as expected

我无法做到的是检查字符串是否等于关键字。下面是一些我试图做到的例子:

Regex: ^(?!hello).*$
String: bye
Result: matches, as expected

Regex: ^(?!hello).*$
String: bye bye
Result: matches, as expected

Regex: ^(?!hello).*$
String: say hello
Result: matches, as expected

Regex: ^(?!hello).*$
String: hello you
Result: does not match, but should match because "hello you" is not equal to "hello"

我想我接近,但需要有人帮忙。以下是另一个例子:

Regex: ^(?!freshsfruits).*$
String: fresh fruits
Result: does not match, as expected

Regex: ^(?!freshsfruits).*$
String: lots of fresh fruits
Result: matches, as expected

Regex: ^(?!freshsfruits).*$
String: fresh fruits, love them.
Result: does not match, but should match

谢谢!

最佳回答

让我们在你的表达方式中加上失败的字句:

^(hello.+|(?!hello).*)$

因此,第一位匹配了哈罗, 后面还有保存空字符串的任何东西 。 (我刚刚完成了一个自动数据类, 无法不把它看作是 {} :: P。) 第二位匹配任何以 < code> hello 开头的东西 。

我认为,这涵盖了所有可能的情况。

问题回答

(放下 . /code>)

(......固定的外表背后/头部混乱)





相关问题
Uncommon regular expressions [closed]

Recently I discovered two amazing regular expression features: ?: and ?!. I was curious of other neat regex features. So maybe you would like to share some tricky regular expressions.

regex to trap img tag, both versions

I need to remove image tags from text, so both versions of the tag: <img src="" ... ></img> <img src="" ... />

C++, Boost regex, replace value function of matched value?

Specifically, I have an array of strings called val, and want to replace all instances of "%{n}%" in the input with val[n]. More generally, I want the replace value to be a function of the match ...

PowerShell -match operator and multiple groups

I have the following log entry that I am processing in PowerShell I m trying to extract all the activity names and durations using the -match operator but I am only getting one match group back. I m ...

Is it possible to negate a regular expression search?

I m building a lexical analysis engine in c#. For the most part it is done and works quite well. One of the features of my lexer is that it allows any user to input their own regular expressions. This ...

regex for four-digit numbers (or "default")

I need a regex for four-digit numbers separated by comma ("default" can also be a value). Examples: 6755 3452,8767,9865,8766,3454 7678,9876 1234,9867,6876,9865 default Note: "default" ...