Get all hashtags from EditText
问题 I have an EdiText . User can mention hashtags in it. I want to get those hashtags and add them to an ArrayList . How can I get those hashtags from EdiText . Suppose my edittxtmsg contains #Stackoverflow slove me #hashtag #problem I want these hashtags: #Stackoverflow #hashtag #problem edittxtmsg.addTextChangedListener(new TextWatcher() { @Override public void onTextChanged(CharSequence s, int start, int before, int count) { // TODO Auto-generated method stub } @Override public void