I'm reposting this because I had said that I was finished with the previous
thread, but then this came up...

I have another problem (I'm really bad at RegEx)... and I spent the last
few hours looking for a resolution...

I want to remove all the double double (""a"") quotes, and replace them with
single double ("a") quotes... but

In my file I have the following:

=""2"" (not valid)

But also,

="" (valid)

Sometimes there is a space at the end followed by another tag:

=""3"" FrameId=""BR1""

and sometime not,

=""8wR4"">

And sometimes the value is correct:

="1"

Ayush or anyone following this thread - if you can help that would be
great - I will continue with the 'trial and error', but so far no luck.

Re: RegEx Part 2 by Ayush

Ayush
Thu Jan 25 16:38:01 CST 2007

Replied to [JHP]s message :
> I want to remove all the double double (""a"") quotes, and replace them with
> single double ("a") quotes... but
> =""2"" (not valid)
> ="" (valid)
> =""3"" FrameId=""BR1""
> =""8wR4"">
> ="1"

> Ayush or anyone following this thread - if you can help that would be
> great - I will continue with the 'trial and error', but so far no luck.

Pattern:
q & q & "(\w)*" & q & q

Replace with :
q & "$1" & q

where q is Chr(34) that is "

--
â?? Ayush
-------------
Search - www.Google.com | Wikipedia - http://en.wikipedia.org
Snip your long urls - http://snipurl.com/
-------------

Re: RegEx Part 2 by JHP

JHP
Thu Jan 25 17:57:12 CST 2007

Thank you so much - without you I would have been here all night - It worked
like a charm!!!

"Ayush" <"ayushmaan.j[aatt]gmail.com"> wrote in message
news:uEFwEGNQHHA.1276@TK2MSFTNGP04.phx.gbl...
> Replied to [JHP]s message :
>> I want to remove all the double double (""a"") quotes, and replace them
>> with
>> single double ("a") quotes... but
>> =""2"" (not valid)
>> ="" (valid)
>> =""3"" FrameId=""BR1""
>> =""8wR4"">
>> ="1"
>
>> Ayush or anyone following this thread - if you can help that would be
>> great - I will continue with the 'trial and error', but so far no luck.
>
> Pattern:
> q & q & "(\w)*" & q & q
>
> Replace with :
> q & "$1" & q
>
> where q is Chr(34) that is "
>
> --
> ? Ayush
> -------------
> Search - www.Google.com | Wikipedia - http://en.wikipedia.org
> Snip your long urls - http://snipurl.com/
> -------------



Re: RegEx Part 2 by Ayush

Ayush
Thu Jan 25 18:02:25 CST 2007

Replied to [JHP]s message :
> Thank you so much - without you I would have been here all night - It worked
> like a charm!!!

You are welcome ..


--
â?? Ayush
-------------
Search - www.Google.com | Wikipedia - http://en.wikipedia.org
Snip your long urls - http://snipurl.com/
-------------