Home > Software engineering >  Inserting space between quotation mark and content
Inserting space between quotation mark and content

Time:08-01

Currently, I have a long list of educational institutions with their names in quotes. The list was compiled by many people so formatting isn't coherent. I am trying to make the entire list Title Case but the change case plugin is stuttering if I have a letter right after a quotation mark ;

i.e. If the content looks like this - "A

instead of - " A

The plugin makes it lowercase.

So in order to solve this issue I need to find a way to insert a space after every quotation mark in the list/ a space after every first quotation mark on every row.

Any idea how I can do that?

CodePudding user response:

You may try SUBSTITUTE() function like-

=SUBSTITUTE(A1,CHAR(34),CHAR(34)&" ",1)

enter image description here

CodePudding user response:

In one cell formula

Use this formula to get rid of quotation marks and get names in enter image description here

Functions used

PROPER
SUBSTITUTE

  • Related