VS 2010 : Regex Group Value Loop?
Oct 8, 2011
(<td [^>]+>
ss|[^, ]<a href=""http://www.test.com/member.php?action=profile[^>]+>(<span [^>]+><strong>|<span [^>]+>|))[^<]+(<span [^>]+>|</strong></span></a>|</a>|</span></a>)
How do i turn that into a capture group so it only gets the text that is bold and removes the rest?Also how do i loop through all the result from that captured group text?
View 1 Replies
ADVERTISEMENT
Apr 29, 2012
I'm trying to find a way where i can make it loop through the results of my capture group regex query.
For instance if i have this:
VB.NET
Dim matches = Regex.Matches("<h1><span>test</span></h1>", "(?<=<h1>(<span>)?)(?<data>.+)(?=(</span>)?</h1>)")For Each item In matches.OfType(Of Match)()Console.WriteLine(item.Value)Next
And i'm trying to get the contents of <data>, how do i do it without it printing out the junk before it and after it?
quantifier isn't working, its supposed to make the <span> tag optional in the query, but it isn't.
View 2 Replies
Apr 5, 2012
I am having an issue where I am using regex.Replace to replace part of a string. The basic idea is that I want to capture the beginning of the string then replace the end of the string with a value from code. For an example pretend I have a string that says "Test Number " followed by number and I want to increment that number. I capture the "Test Number " but when I try to concatenate that capture with the new number it treats the capture ($1) as a literal and replaces the entire string with $1[new number].
[code]...
This will output "We are on Test Number 2", as expected. how I can use a variable in the replacement string portion of the Regex.Replace when including a captured group?
View 1 Replies
Nov 4, 2010
Say I have this list (with unknown delimiters):
ABC-12345, DEF-34567; WER-12312
ERT-23423
I know the regex to mach what I need is: [A-ZÆØÅ]{3}-d{5}. But how do I use the Group or Capture of the .net Match class?
This is my first attempt:
Public Function ParseSites(ByVal txt As String) As List(Of String)
Const SiteIdRegEx = "([A-ZÆØÅ]{3}-d{5})"
Dim list As New List(Of String)
[Code].....
View 2 Replies
Dec 29, 2010
I was able to extract href value of anchors in an html string. Now, what I want to achieve is extract the href value and replace this value with a new GUID. I need to return both the replaced html string and list of extracted href value and it's corresponding GUID.
My existing code is like:
Dim sPattern As String = "<a[^>]*hrefs*=s*((""(?<URL>[^""]*)"")|('(?<URL>[^']*)')|(?<URL>[^s]* ))"
[code]......
View 1 Replies
Dec 28, 2011
I'm using this code
[Code]...
I need it to match both 12345 (5 char zip) and 12345-1234 (10 char zip) in 1 single group. Is that possible?
[Code]...
View 1 Replies
Aug 4, 2009
I have the following text that I am trying to parse:
"user1@emailaddy1.com" <user1@emailaddy1.com>, "Jane Doe" <jane.doe@ addyB.org>,
"joe@company.net" <joe@company.net>
I am using the following code to try and split up the string:
Dim groups As GroupCollection
Dim matches As MatchCollection
Dim regexp1 As New Regex("""(.*)"" <(.*)>")
matches = regexp1 .Matches(toNode.InnerText)
For Each match As Match In matches
groups = match.Groups
message.CompanyName = groups(1).Value
message.CompanyEmail = groups(2).Value
Next
But this regular expression is greedy and is grabbing the entire string up to the last quote after "joe@company.net". I'm having a hard time putting together an expression that will group this string into the two groups I'm looking for: Name (in the quotes) and E-Mail (in the angle brackets).
View 4 Replies
Nov 15, 2011
I am trying to write a program that will have different group boxes,
each representing a question, and each one has radio button choices
I am trying to write the program so that a while loop will go through each group box and check answers of radio button choices
the codes I want to know is the command to access different group boxes
and also how to keep each group box "seperate" enough that i can use same radio button names for all the group boxes...
View 3 Replies
Jun 25, 2012
I currently have these group of files I want to rename:
C:Users medinaDocuments estenviromentTestfolderfile1-1111.doc
C:Users medinaDocuments estenviromentTestfolderfile2-1111.doc
C:Users medinaDocuments estenviromentTestfolderfile3-1111.doc
C:Users medinaDocuments estenviromentTestfolderfile20-1111.doc
I have a text box on my form where a I would enter a string of text which will replace the '1111' to whatever the string is in the text box field.
So for example, On my app, in the text box field, I would enter 2222, then when I click on button1, it will rename file1-1111.doc to file1-2222.doc, file2-1111.doc to file2-2222.doc, etc.....
This is my VB code I currently have:
[Code]...
View 4 Replies
Sep 2, 2010
I have a form with many buttons on it and I would like to loop through all the controls in a group control and find out which button is clicked.
I plan to use the click event of the button and I know it's easy to create a click event procedure for all of the buttons but would like to avoid that.
The group control is called GroupFilterButtons.
View 5 Replies
Aug 11, 2009
the regex:
# Region
<tr>
s*<tds+class="grey11">Region:</td>s*
<tds+class="b11s+b">(?<Region>.+?(?=</td>))</td>
s*
[Code]...
View 5 Replies
Feb 28, 2009
I use a simple for each loop toi grab a piece of data from a regex like:
[Code]...
View 7 Replies
May 3, 2011
I'm trying to match up a specific group name and see if it exists for the currently logged in user using Active Directory roles. If the Group Name exists for the Current User, I want that group name to be displayed in a drop down list. Example: If current user is in BIG Group, display BIG in drop down list.Problem: All I am getting is SIDs and I'm not able to get anything to match up to the group name and nothing will show up in the drop down list.I also get the following Error:Error: Object variable or WIth block variable not set.How do I fix this?? here is the code I am using:
Private Sub GetMarketingCompanies()
' code to populate marketing company drop down list based on the current logged in users active directory group that
[code].....
View 3 Replies
Nov 16, 2011
In proper sql my query would be something like:
select c.id, c.name, count(i.id)
from cats c, items i
where c.id=i.catid
[code].....
View 1 Replies
Jan 31, 2011
Enumerate if an Active Directory group's member is user or another group
View 1 Replies
Jun 15, 2012
I am trying to work out a way to group a collection of items like an enum so that I can access them through code else where in my program. i.e I have list of items and sub items
[Code]...
View 13 Replies
Mar 15, 2012
i have to match a regex HTML
inputtext:-<div class="header_item_wrapper">
<img src="http://do.a.bpcdn.net/do_img/global/header/buttons/icon_stats_lvl.png?__cv=b84d7d86e451fdfbaa2115080867b100" width="16" height="13" alt="">
<span>4</span>
</div>
[Code]...
View 2 Replies
Sep 15, 2011
how would i extract something like this....
CODE:
could possibly something like this work...
CODE:
View 1 Replies
Sep 26, 2010
Dim ab As String = "aaaextBox1.Text = Regex.Replace(TextBox1.Text, "Dim " + ab + " As String", "aab")That is the code I am using now. Problem is that it's output is only "aab".Is there any way to keep the structure, so it would be "Dim aab As String" instead of only "aab"?
View 2 Replies
Jan 29, 2011
i am having a file like below.
.....
.....
#pStyle03X0 {XXX: 0px;YYYY: 144px;xxxxx:XXXXX: 1000;xxxxx: 498.00; xxxxx:714.00; }
[code]....
View 5 Replies
Jan 1, 2011
I am writing an application and I do not know how to reference a group of controls inside a group box. I will include the code I have written so far and a picture with a detailed explanation as to what I am trying to do. Feel free to comment on any discrepancies that you may notice in my code.
Code:
Public Class Form1
' The following class-level constants are used
' to calculate the price of the model
Const decCOUPE As Decimal = 18000
[code].....
View 3 Replies
Sep 25, 2011
I want to remove a group (include all items in this group) in ListView, but unsuccessful, the code is below, why?
ListView1.Groups("GroupName").Items.Clear()
ListView1.Groups.Remove(ListView1.Groups("GroupName"))
View 4 Replies
Apr 6, 2011
anyone have some quick code on how to do this?
wmi is not a option.
View 1 Replies
Feb 3, 2011
I have this
Dim regex As Regex = New Regex("[0-9]")
If myString = "Hello[" + regex + "]" Then
How do I use a regex inside this string?
View 5 Replies
Jun 30, 2010
which is the way to create all "matches" to array without this style:
ListBox1.Items.Add(Regex.Match(GetWebData).Value)
ListBox1.Items.Add(Regex.Match(GetWebData).NextMatch)
ListBox1.Items.Add(Regex.Match(GetWebData).NextMatch.NextMatch)
View 2 Replies
Mar 22, 2011
1. Regex:this
Try
Dim mCollect As MatchCollection = Regex.Matches(Textbox1.text.ToString , "(?<=1).*?(?=3)", RegexOptions.IgnoreCase)
For Each m As Match In mCollect
TextBox2.Text = m.Value
[Code]...
View 6 Replies
Aug 27, 2011
facebook friend add using regex,how? [code]
View 1 Replies
May 27, 2010
I want to get a string between 2 strings using Regex.The the string I have is "<b>hello</b>", now I want to get the string between <b> and </b>. I guess its something like Regex(String, "<b>(.+)</b>" but I'm not sure how to do it. I know there is this function called GetBetween but I guess this is a better way.
View 9 Replies
Aug 19, 2010
The text I am trying to put my pattern into is:
<li class="hp">
<span>HP</span>
<strong>1850 (+300)</strong>
</li>
The (+300) can go away...i'd really only like to return just the 1850.
View 1 Replies
Apr 10, 2012
I'm trying to figure out how to use regex to grab the information between the double quotation marks, it will always be in this format:
Client: ("COMMAND", "DATA(if it exists)", "ARG1(if it exists)", "ARG2(if it exists)", "ARG3(if it exists)")
It will ALWAYS have the "COMMAND" string there no matter what, and when the "DATA" string
[code].....
View 2 Replies