Pull out unique @username mentions from text, preserving first appearance order.
Constraints
Example
>>> extract_mentions('Hey @alice, @bob! How are you @alice?')
['alice', 'bob']
>>> extract_mentions('Contact us at @support [at] example.com')
['support']
>>> extract_mentions('No mentions here')
[]
>>> extract_mentions('@hello_world @php@example.com')
['hello', 'php', 'example.com']
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints