I want to match a string to make sure it contains only letters.
I\'ve got this and it works just fine:
var onlyLetters = /^[a-zA-Z]*$/.test(myString)
var onlyLetters = /^[a-zA-Z\u00C0-\u00ff]+$/.test(myString)