I have AttributedString with emoji like this " @Mervin tester "
Now I need to find a range of Mervin in this attributed String.
let attributedString = NSMutableAttributedString(string: " @Mervin tester ")
let range = // range for "Mervin" in above String.
Thank you.