문제

I am trying to find words starting with a pound sign. Javascript.

"test #word no#luck".replace( /\b#([\w]+)\b/g, "<#$1>" );

yet the word boundary doesn't seem to apply to the #-sign. it outputs:

test #word no<#luck>

also i am a bit confused that i need to add the #-sign again in the replacement pattern "<#$1>", as the algorithm seems to strip it in the process.

도움이 되었습니까?

해결책

Here's how I'd do it:

result = subject.replace(/(^|\s)(#\w+)\b/g, "$1<$2>");

다른 팁

Try this:

result = subject.replace(/(?:^|\s)(#\w+)(?:\s|$)/g, "<$1>");

\b will only work with \w

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top