Regex exclude &# [closed] - regex

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
How to determine that string doesn't contain both symbols &# together using regular expression ?

You can use a negative lookahead:
/^(?!.*&#)(.*)/m
Demo

Related

Simple regex to match "word" or "word/" [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 days ago.
Improve this question
I have been trying with ^(word?(\/))$ but no success
There is no need to consider quotation marks
You should try:
^word\/?$
See this demo

Extracting a word between two parenthesis regex [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I am trying to extract word General using Pyspark regex from the following string:
:52.089;emailI_Pm|T(General)|20000;ml2736
How can I do it?
Thanks
re.match(r".*\((.*)\).*", ":52.089;emailI_Pm|T(General)|20000;ml2736")[1]

regular expression that will find: F.01, F1.01, F9.99, F10.01, [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I need a regular expression that will find:
F.01,
F1.01,
F9.99,
F10.01,
And any decimal to the second place in between.
You can use this pattern
F\d+\.\d\d$
for most of the platforms it should work

How to “inverse match” with regex without content? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
I have read How to "inverse match" with regex? and i would like to know if i can apply it to a non-content regex. In particular i'm talking about: ^[A-z0-9+\/]{44}$
I tried https://regex101.com/r/NmOs7Z/1 but it does not work
I didn't get exactly what you really, but from my understanding you want to match the two lines in your demo
So what i did :
^(?![a-zA-Z0-9+\/]{44}).*$
Demo

Regex Expression Required [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
i am new to this regex thing, how can we build regex expression for following thig
input==>[User:1490474408:michaelayliffe]
output should be ==>1490474408
input will be anything like below:
1.[User:1490474408:michaelayliffe]
2.[User:12345:dfhdfhdf]
3.[User:56789:utyutyutyu]
Output should be middle value.
Please reply.
(?<=\[User:)[^:]+
Using lookbehind should work for you.
/\d+/g
It is find digits those are middle of your string