如何用 javascript 检测符号 ( # )?

How to detect symbol ( # ) with javascript?

我正在制作实时新闻自动收报机。像 twitter,如果有 hastagh ( #blabla ),那就是红色..

谁能帮帮我? 提前致谢

您可能正在寻找 indexOf()

The indexOf() method returns the index within the calling String object of the first occurrence of the specified value, starting the search at fromIndex. Returns -1 if the value is not found.

正如其他人评论的那样,如果您正在寻找正则表达式,那么这个也适合您

(^|\s)(#[a-z\d][\w-]*) 

DEMO