-2

If I import new set of data of last and first name, how can I detect last name which the first letter is not capital letter or space before name??? and after detect it, how can I see the list of result?

such as

Name :

Lee Arvin

kwon Tony

kwon, Tony

Detect :

kwon Tony

kwon, Tony

dbmitch
  • 5,361
  • 4
  • 24
  • 38
Kevin
  • 1
  • 3

1 Answers1

0

Look for the first LEFT character then check if the ASCii code is within 65 to 90 range

geeFlo
  • 365
  • 4
  • 10