REGEX with Yahoo Pipes remove " front string

137 Views Asked by At

I want this sentence: An official "Android Device Manager" app is finally available.

To say this: An official Android Device Manager app is finally available.

I am using regex replace ". with null but it is giving me this: An official ndroid Device Managerapp is finally available.

1

There are 1 best solutions below

1
On

Try This pattern

[("")]+

MsgBox(Regex.Replace("An official ""Android Device Manager"" app", "[\("")]+", ""))

I tried this and it gives me like An official Android Device Manager app

Hope this help..