regex - Google spreadsheets translate returns double quotes -



regex - Google spreadsheets translate returns double quotes -

i using googletranslate() function translate 1 language in google spreadsheets. have sentence in 1 (known) language @ column a1 'lorem ipsum dolor sit down amet' , want translation of in english language @ column b1. used this:

=googletranslate(a1, "li", "en")

the result is:

"lorem ipsum dolor sit down amet".

there double quotes now. want translation single quote (like before), found google's bug (yes, said google's bug lol). solution maybe in within regular look or else...

how can replace double quotes (in beingness , end only) of translated sentence in google spreadsheets?

based on docs looks google spreadsheets allows search regex , not replace, in case can:

find: "(.*?)" replace: '\1'

you can of course of study other programme using same regexen.

regex spreadsheet

Comments

Popular posts from this blog

web services - java.lang.NoClassDefFoundError: Could not initialize class net.sf.cglib.proxy.Enhancer -

Accessing MATLAB's unicode strings from C -

javascript - mongodb won't find my schema method in nested container -