When inputting new users' email addresses and names into the Copy User interface, why not accept more formats? Right now it is very rigid: Email,FullName.
What I'm looking for is probably best described procedurally.
For each line:
- Look for '@' in the input string.
- Grab all characters around '@' until whitespace is encountered; perform any desired validation, and you have the user's email address.
- Remove the resulting email address from the string.
- Grab everything else, trim, and you have the user's full name.
This will allow entry in many different formats. I don't really see a downside.
I find myself pasting in lists of new users quite frequently, and the rigidness of the expected format gets in the way of my Getting Things Done.