Skip to content

Instantly share code, notes, and snippets.

@sertdfyguhi
Created April 6, 2022 17:31
Show Gist options
  • Save sertdfyguhi/d7d42cfccc2dc548c9ca77bd052a906c to your computer and use it in GitHub Desktop.
Save sertdfyguhi/d7d42cfccc2dc548c9ca77bd052a906c to your computer and use it in GitHub Desktop.
spwn name generator spwn edition
regex = @regex::new('[aeiouAEIOU ]')
generate = (name: @string) {
return (name[0] + regex.replace(
name.substr(
1,
name.length - 1
),
''
) + name[name.length - 1]).uppercase()
}
$.print(generate($.get_input('name: ')))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment