Replacing double qoutes by an space with @ReplaceSubstring

Hi

How can I remove the double quotes around a string? I have to strip text that have qoutes around it, like “Adam Whyte” . I only want o have as a result Adam Whyte.

I have used the formula functions @Propercase, but this places extra double qoutes around the text( ““Adam Whyte””). Now I want to use the @ReplaceSubstring function, but don’t know how the fromList parameter in this function should look like.

I tried @ReplaceSubstring(FullName;“/”“;” ") , but this does not work.

Any help will be appreciated.

Regards

Subject: Replacing double qoutes by an space with @ReplaceSubstring

Use a backward slash instead of a forward slash:

@ReplaceSubstring(FullName;“"”;" ")

Regards,

René