Skip to content

Instantly share code, notes, and snippets.

@alexsad
Created June 6, 2024 18:59
Show Gist options
  • Save alexsad/c31848303841a892045ca187edca1106 to your computer and use it in GitHub Desktop.
Save alexsad/c31848303841a892045ca187edca1106 to your computer and use it in GitHub Desktop.
get first and last intial letters from a full name
(() => {
const [, firstChar, lastChar] = /^(\w).*?(\w)\w+$/gm.exec('Izabella da Silva Xauro');
return {
firstChar,
lastChar,
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment