I need basic regex code [closed] - regex

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
/edit?o=U&video_id=xxxxxxxxxxxx&show_mt=1
/edit?o=U&show_mt=1&video_id=xxxxxxxxxxxx
I want get video_id query using regex (xxxxxxxxx)
I am using VB.NET
Thanks for help!
M. Deger
Edit: I want only regex code eg: [^?]+(?:\?video_id=([^&]+).*)?

Untested:
(?<=video_id\s*=\s*)[^&]*(?=&|$)
or, result in capture group 1
video_id\s*=\s*([^&]*)(?:&|$)

Related

Regex:password all character are allowed,but not include space [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Regex:password all character are allowed,but not include space,length is 8-16.please give me an efftive help.
Consider the following Regex...
^\S{8,16}$
Good Luck!

String conversion and concatenation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 8 years ago.
Improve this question
I have the following line of XML:
<indexentry><secondaryie>definition, 3/2/4</secondaryie></indexentry>
And I need a regex that matches the above and converts it as below:
ABC3(the first number)/P-2(second number)-4(third number)
How can I do this?
Use this regex:
([0-9]+)/([0-9]+)/([0-9]+)
And from captured groups #1, #2, #3 make your string:
ABC3\1/P-2\2-4\3

RegEx - Add new conditions to existing regex [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I currently have this Regex:
.*[a-z]$|.*[A-Z]$|.*[0-9]$
I need to add the following to the existing - /:.#[]()
Does anyone know how to do it?
You don't need multiple OR conditions. Have only one and include special characters also:
[0-9A-Za-z\/#:.()\[\]]
Per your comments, this should do it for you:
^[a-zA-Z0-9/:.#\[\]()]+$
This will match a string containing only the characters you've specified.

regex start with 1 of 3 values and is 9 digits [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 8 years ago.
Improve this question
I need a regex that makes sure a values starts with either:
60, 07, or 80
and is 9 digits long
Please can someone help with this.
Thanks
^(?:60|07|80)\d{7}$ should suit your needs.
/(07|60|80)[\d]{7}/
should do it.

How can I get all substrings matching a regex from another string in R [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions must demonstrate a minimal understanding of the problem being solved. Tell us what you've tried to do, why it didn't work, and how it should work. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have a string: "C:/This/is/a/windows/path/file20110312name20120221.csv".
I want to extract all dates (e.g. [0-9]{8}).
Generally, how can I extract sub-strings matching a pattern from a bigger string?
It is advised to supplement your question with a reproducible example (How to make a great R reproducible example?)
Is this what you look for ?
s <- "C:/This/is/a/windows/path/file20110312name20120221.csv"
regmatches(s, gregexpr("[0-9]{8}", s))