I want to extract any words immediately after the # character in String and store them in a String[] array.
For example, if this is my String ...
"Array is the most #important thing in any programming #language"
Then I want to extract the following words into an array of String[] ...
"important" "language"
Can anyone suggest suggestions to achieve this.
baraaalsafty
source share