RegEx Pattern - Determining the name of the page
[.+]?/(?<pagename>[^/]+).aspx
If the only thing necessary is to determine the name of the page (without path information) this regex pattern did the job for me.
[.+]?/(?<pagename>[^/]+).aspx
If the only thing necessary is to determine the name of the page (without path information) this regex pattern did the job for me.
Comments have been disabled for this content.