I am writing a macro in OpenOffice Writer.
I read text from a .xml file and put that into a String. The String will look like this: "hello" (so the apostrophe are also part of the String)
So to be clear the String looks like this(Example): String removeApostrophe = ""hello"".
I know it is weird but it's written in the .xml file that way.
What I need is a function where I can put that String in and removes the apostrophe so only: hello will come out.
Something I tried but is not possible is the Replace function: Replace(" "hello" ", """, "")