in phpmyadmin run the SQL Query:
Code:
SELECT username FROM user WHERE usergroupid = 2 ORDER BY username
Make sure you add your table prefix to "user" if you have one.
2 is the registered users usergroup, change it to whatever usergroup you want.
ORDER BY username will make it alphabetical... change it to
ORDER BY userid if you prefer the order in which they joined.
In phpmyadmin there is an option to export your results as a csv file.