I have a csv of names like so Smith, SMITH, John, JOHN
and I'm trying to use regex in OpenRefine to remove the names in all caps.
replace(value, /^[A-Z]$/, '')
does nothing and replace(value, /[A-Z]/, '')
gets rid of all names with any capital letters and leaves a trail of stray commas.
I need to delete the all caps names and any commas that may follow as well. I'm not interested in preserving the list by making all names lower case or capitalizing the first letter of each name. Any name in all caps must be deleted.