Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Add space after capital letter in a 2d array string

I want to add space after capital letter in string of 2d array.

let arr = [
  ["Title", "GameBook"],
  ["anyOfYear", 1234],
  ["pieChart", "somePage"],
];

//output => [ [Title, "Game Book"], ["any Of Year", 1234] , ["pie Chart", "some Page"]]


>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Here you can try this logic :

let arr = [
  ["Title", "GameBook"],
  ["anyOfYear", 1234],
  ["pieChart", "somePage"],
];

arr = arr.map((e) => {
  return e.map((elem) => {
    if (typeof elem == "string") {
      return (elem = elem.replaceAll(/([a-z])([A-Z])/g, "$1 $2"));
    }
    return elem;
  });
});

console.log(arr);
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading