How can i use Dictionary.Any(Function(x)) with a List(of(keyvaluepair(of String, String) VB.NET
up vote
0
down vote
favorite
I'm currently using the following code and it works very well, at getting the paragraphs from a Word document that matches the keywords on my dictionary, the only problem is that dictionaries don't allow duplicates, i want to know how could i use a List(of(keyvaluepair(of string, string) the same way im using the dictionary at the where clause.
Examples:
Working perfectly with the dictionary, except some, there are duplicates in key with the same value that I need to place.
filelistDict.Add("date", "Date")
filelistDict.Add("july", "Date")
filelistDict.Add("1", "Date")
filelistDict.Add("1", "Number")
filelistDict.Add("one", "Number")
Dim matchQuery4 = From para As Paragraph In doc.Paragraphs
Where filelistDict.Any(Function(s) Regex.IsMatch(para.Range.Text, "(_|-)" + Regex.Escape(s.Key) + "|b" + Regex.Escape(s.Key) + "b|" + Regex.Escape(s.Key) + "(_|-)", RegexOptions.IgnoreCase))
Select para
I want to achieve the same result but with the following list, which allows the duplicates but I don't know how to implement in the linq code.
Dim WordsDictionary As List(Of KeyValuePair(Of String, String))
Dim matchQuery4 = From para As Paragraph In doc.Paragraphs
Where WordsDictionary.Any(Function(s) Regex.IsMatch(para.Range.Text, "(_|-)" + Regex.Escape(s.Key) + "|b" + Regex.Escape(s.Key) + "b|" + Regex.Escape(s.Key) + "(_|-)", RegexOptions.IgnoreCase))
Select para
vb.net list linq dictionary keyvaluepair
add a comment |
up vote
0
down vote
favorite
I'm currently using the following code and it works very well, at getting the paragraphs from a Word document that matches the keywords on my dictionary, the only problem is that dictionaries don't allow duplicates, i want to know how could i use a List(of(keyvaluepair(of string, string) the same way im using the dictionary at the where clause.
Examples:
Working perfectly with the dictionary, except some, there are duplicates in key with the same value that I need to place.
filelistDict.Add("date", "Date")
filelistDict.Add("july", "Date")
filelistDict.Add("1", "Date")
filelistDict.Add("1", "Number")
filelistDict.Add("one", "Number")
Dim matchQuery4 = From para As Paragraph In doc.Paragraphs
Where filelistDict.Any(Function(s) Regex.IsMatch(para.Range.Text, "(_|-)" + Regex.Escape(s.Key) + "|b" + Regex.Escape(s.Key) + "b|" + Regex.Escape(s.Key) + "(_|-)", RegexOptions.IgnoreCase))
Select para
I want to achieve the same result but with the following list, which allows the duplicates but I don't know how to implement in the linq code.
Dim WordsDictionary As List(Of KeyValuePair(Of String, String))
Dim matchQuery4 = From para As Paragraph In doc.Paragraphs
Where WordsDictionary.Any(Function(s) Regex.IsMatch(para.Range.Text, "(_|-)" + Regex.Escape(s.Key) + "|b" + Regex.Escape(s.Key) + "b|" + Regex.Escape(s.Key) + "(_|-)", RegexOptions.IgnoreCase))
Select para
vb.net list linq dictionary keyvaluepair
Have you tested anything? What makes you think it won't work?
– Johni Michels
17 hours ago
Yeah i have do some test, the problem is i haven't find a way to access from the Function(s) the objects within the list. Additionally lists doesn't have a method called Any. I believe if i could make it look at the object within i will be able to use any, but no luck so far.
– Xeyrruken
15 hours ago
List<T>
implementsIEnumerable<T>
and this will enable the use of thebool Any<T>(this IEnumerable<T> source)
under the namespaceSystem.Linq
. Are you sure you're not missing the using directive?
– Johni Michels
14 hours ago
1
Sorry, the language you're using is VB so if you import the namespaceSystem.Linq
in the beginning of the file you'll have access to the extension methodPublic Function Any(Of T)(source as IEnumerable(Of T)) As Boolean
In fact, when you're usingfilelistDict.Any
you're using the exact same extension method, since dictionaries do not implement a method called Any, it just implementsICollection(Of KeyValuePair(Of TKey, TValue))
which in turn inherits fromIEnumerable(Of KeyValuePair(Of TKey, TValue))
– Johni Michels
14 hours ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm currently using the following code and it works very well, at getting the paragraphs from a Word document that matches the keywords on my dictionary, the only problem is that dictionaries don't allow duplicates, i want to know how could i use a List(of(keyvaluepair(of string, string) the same way im using the dictionary at the where clause.
Examples:
Working perfectly with the dictionary, except some, there are duplicates in key with the same value that I need to place.
filelistDict.Add("date", "Date")
filelistDict.Add("july", "Date")
filelistDict.Add("1", "Date")
filelistDict.Add("1", "Number")
filelistDict.Add("one", "Number")
Dim matchQuery4 = From para As Paragraph In doc.Paragraphs
Where filelistDict.Any(Function(s) Regex.IsMatch(para.Range.Text, "(_|-)" + Regex.Escape(s.Key) + "|b" + Regex.Escape(s.Key) + "b|" + Regex.Escape(s.Key) + "(_|-)", RegexOptions.IgnoreCase))
Select para
I want to achieve the same result but with the following list, which allows the duplicates but I don't know how to implement in the linq code.
Dim WordsDictionary As List(Of KeyValuePair(Of String, String))
Dim matchQuery4 = From para As Paragraph In doc.Paragraphs
Where WordsDictionary.Any(Function(s) Regex.IsMatch(para.Range.Text, "(_|-)" + Regex.Escape(s.Key) + "|b" + Regex.Escape(s.Key) + "b|" + Regex.Escape(s.Key) + "(_|-)", RegexOptions.IgnoreCase))
Select para
vb.net list linq dictionary keyvaluepair
I'm currently using the following code and it works very well, at getting the paragraphs from a Word document that matches the keywords on my dictionary, the only problem is that dictionaries don't allow duplicates, i want to know how could i use a List(of(keyvaluepair(of string, string) the same way im using the dictionary at the where clause.
Examples:
Working perfectly with the dictionary, except some, there are duplicates in key with the same value that I need to place.
filelistDict.Add("date", "Date")
filelistDict.Add("july", "Date")
filelistDict.Add("1", "Date")
filelistDict.Add("1", "Number")
filelistDict.Add("one", "Number")
Dim matchQuery4 = From para As Paragraph In doc.Paragraphs
Where filelistDict.Any(Function(s) Regex.IsMatch(para.Range.Text, "(_|-)" + Regex.Escape(s.Key) + "|b" + Regex.Escape(s.Key) + "b|" + Regex.Escape(s.Key) + "(_|-)", RegexOptions.IgnoreCase))
Select para
I want to achieve the same result but with the following list, which allows the duplicates but I don't know how to implement in the linq code.
Dim WordsDictionary As List(Of KeyValuePair(Of String, String))
Dim matchQuery4 = From para As Paragraph In doc.Paragraphs
Where WordsDictionary.Any(Function(s) Regex.IsMatch(para.Range.Text, "(_|-)" + Regex.Escape(s.Key) + "|b" + Regex.Escape(s.Key) + "b|" + Regex.Escape(s.Key) + "(_|-)", RegexOptions.IgnoreCase))
Select para
vb.net list linq dictionary keyvaluepair
vb.net list linq dictionary keyvaluepair
asked yesterday
Xeyrruken
42
42
Have you tested anything? What makes you think it won't work?
– Johni Michels
17 hours ago
Yeah i have do some test, the problem is i haven't find a way to access from the Function(s) the objects within the list. Additionally lists doesn't have a method called Any. I believe if i could make it look at the object within i will be able to use any, but no luck so far.
– Xeyrruken
15 hours ago
List<T>
implementsIEnumerable<T>
and this will enable the use of thebool Any<T>(this IEnumerable<T> source)
under the namespaceSystem.Linq
. Are you sure you're not missing the using directive?
– Johni Michels
14 hours ago
1
Sorry, the language you're using is VB so if you import the namespaceSystem.Linq
in the beginning of the file you'll have access to the extension methodPublic Function Any(Of T)(source as IEnumerable(Of T)) As Boolean
In fact, when you're usingfilelistDict.Any
you're using the exact same extension method, since dictionaries do not implement a method called Any, it just implementsICollection(Of KeyValuePair(Of TKey, TValue))
which in turn inherits fromIEnumerable(Of KeyValuePair(Of TKey, TValue))
– Johni Michels
14 hours ago
add a comment |
Have you tested anything? What makes you think it won't work?
– Johni Michels
17 hours ago
Yeah i have do some test, the problem is i haven't find a way to access from the Function(s) the objects within the list. Additionally lists doesn't have a method called Any. I believe if i could make it look at the object within i will be able to use any, but no luck so far.
– Xeyrruken
15 hours ago
List<T>
implementsIEnumerable<T>
and this will enable the use of thebool Any<T>(this IEnumerable<T> source)
under the namespaceSystem.Linq
. Are you sure you're not missing the using directive?
– Johni Michels
14 hours ago
1
Sorry, the language you're using is VB so if you import the namespaceSystem.Linq
in the beginning of the file you'll have access to the extension methodPublic Function Any(Of T)(source as IEnumerable(Of T)) As Boolean
In fact, when you're usingfilelistDict.Any
you're using the exact same extension method, since dictionaries do not implement a method called Any, it just implementsICollection(Of KeyValuePair(Of TKey, TValue))
which in turn inherits fromIEnumerable(Of KeyValuePair(Of TKey, TValue))
– Johni Michels
14 hours ago
Have you tested anything? What makes you think it won't work?
– Johni Michels
17 hours ago
Have you tested anything? What makes you think it won't work?
– Johni Michels
17 hours ago
Yeah i have do some test, the problem is i haven't find a way to access from the Function(s) the objects within the list. Additionally lists doesn't have a method called Any. I believe if i could make it look at the object within i will be able to use any, but no luck so far.
– Xeyrruken
15 hours ago
Yeah i have do some test, the problem is i haven't find a way to access from the Function(s) the objects within the list. Additionally lists doesn't have a method called Any. I believe if i could make it look at the object within i will be able to use any, but no luck so far.
– Xeyrruken
15 hours ago
List<T>
implements IEnumerable<T>
and this will enable the use of the bool Any<T>(this IEnumerable<T> source)
under the namespace System.Linq
. Are you sure you're not missing the using directive?– Johni Michels
14 hours ago
List<T>
implements IEnumerable<T>
and this will enable the use of the bool Any<T>(this IEnumerable<T> source)
under the namespace System.Linq
. Are you sure you're not missing the using directive?– Johni Michels
14 hours ago
1
1
Sorry, the language you're using is VB so if you import the namespace
System.Linq
in the beginning of the file you'll have access to the extension method Public Function Any(Of T)(source as IEnumerable(Of T)) As Boolean
In fact, when you're using filelistDict.Any
you're using the exact same extension method, since dictionaries do not implement a method called Any, it just implements ICollection(Of KeyValuePair(Of TKey, TValue))
which in turn inherits from IEnumerable(Of KeyValuePair(Of TKey, TValue))
– Johni Michels
14 hours ago
Sorry, the language you're using is VB so if you import the namespace
System.Linq
in the beginning of the file you'll have access to the extension method Public Function Any(Of T)(source as IEnumerable(Of T)) As Boolean
In fact, when you're using filelistDict.Any
you're using the exact same extension method, since dictionaries do not implement a method called Any, it just implements ICollection(Of KeyValuePair(Of TKey, TValue))
which in turn inherits from IEnumerable(Of KeyValuePair(Of TKey, TValue))
– Johni Michels
14 hours ago
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401805%2fhow-can-i-use-dictionary-anyfunctionx-with-a-listofkeyvaluepairof-string%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tested anything? What makes you think it won't work?
– Johni Michels
17 hours ago
Yeah i have do some test, the problem is i haven't find a way to access from the Function(s) the objects within the list. Additionally lists doesn't have a method called Any. I believe if i could make it look at the object within i will be able to use any, but no luck so far.
– Xeyrruken
15 hours ago
List<T>
implementsIEnumerable<T>
and this will enable the use of thebool Any<T>(this IEnumerable<T> source)
under the namespaceSystem.Linq
. Are you sure you're not missing the using directive?– Johni Michels
14 hours ago
1
Sorry, the language you're using is VB so if you import the namespace
System.Linq
in the beginning of the file you'll have access to the extension methodPublic Function Any(Of T)(source as IEnumerable(Of T)) As Boolean
In fact, when you're usingfilelistDict.Any
you're using the exact same extension method, since dictionaries do not implement a method called Any, it just implementsICollection(Of KeyValuePair(Of TKey, TValue))
which in turn inherits fromIEnumerable(Of KeyValuePair(Of TKey, TValue))
– Johni Michels
14 hours ago