First of all I have read all the references that match the above Title but none seem to answer my simple requirement. I must use a regex pattern as I need to feed it to a third-party library for processing.
Part 1: The xml file to read from is a simple project.exe.config file. The regex that I have already used is
<system.serviceModel>[\s\S]*?<\/system.serviceModel>
This reads the node and its contents however I ONLY need the CONTENTS to be returned.
Part 2: This should be so simple that I am embarrassed to ask in such an esteemed forum as this. Can you recommend a program that will a) allow me to test various regex patterns on the subject file and b) be designed to tech me Regex patterns at the same time. I've paid for and installed RegExBuddy but the program itself seems to confusing for me, let alone the regex itself.
Edit: VBscript does not support lookbehind. I need to use VBscript as I'm using third-party tools.