AspExprRegex Class
Assembly: System.Web.RegularExpressions (in system.web.regularexpressions.dll)
The AspExprRegex class provides a compiled regular expression to parse an ASP.NET expression block (<%= … %>).
Note: |
|---|
|
The System.Web.RegularExpressions classes are meant to be used by the .NET Framework to parse ASP.NET pages and are not always practical for general applications. For example, many of these classes match only the beginning of a string. |
The predefined regular expression pattern used by the AspExprRegex class is \G<%\s*?=(?<code>.*?)?%>. This regular expression returns an entire inline expression block, including its beginning and ending tags and all of its contents. However, for a match to occur, the expression block must start at the beginning of the input stream. For multiple expression blocks to be found in a call to the AspExprRegex object's Matches method, they must be immediately contiguous to one another. That is, the %> tag that terminates the previous expression block must be immediately followed by the <%= tag that begins the next expression block, without any intervening characters.
You can retrieve all inline expression blocks regardless of their position in an input string in either of two ways:
-
By instantiating a Regex object whose regular expression pattern is <%\s*?=(?<code>.*?)?%>.
-
By using the String.IndexOf overload to locate the next opening tag of an inline expression block in a string, and then using this position when calling the AspExprRegex object's Match method. The following example illustrates how to use this technique with the AspExprRegex object to extract all the inline expression blocks in a string.
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Note: