Find the words start from a special character java

后端 未结 5 1658
梦毁少年i
梦毁少年i 2021-02-08 21:18

I want to find the words that start with a \"#\" sign in a string in java. There can be spaces between the sign and the word as well.

The string \"hi #how are # yo

5条回答
  •  花落未央
    2021-02-08 21:58

    Try this expression:

    # *(\w+)
    

    This says, match # then match 0 or more spaces and 1 or more letters

提交回复
热议问题