I'm wondering if its legal to add a static regex statement in the select statement of a linq query. Also is there an example and what the syntax for doing it? To strip tags from HTML and return just a portion of the tag to my Generic.IEnumerable(Of String) list. Dim links = From link In Mytabledata... _ Where InStr(link.@href, "[AC35]") > 0 _ Select ( get text between "code =" and "&" in a regex static statement from link.value) I could only find a couple of examples of comparing matches. None of
Read More...