“\ $”正则表达式匹配什么?

时间:2016-08-13 17:08:54

标签: regex regular-language

我发现了,

$ :       Matches the end of the line
\s:       Matches whitespace 
\S:       Matches any non-whitespace character

\ $ 究竟做了什么?

2 个答案:

答案 0 :(得分:2)

\ $将根据分配给正则表达式的表达式标志帮助查找内容中可用的字符“$”。

比如说:

\ $:只在内容中找到单个“$” \ $ / g:在内容中找到全球可用的“$”。

请找到截图,它可以给你清晰的想法。

\ $: Expression \$ \ $ with Global expression: \$ with Global expression

答案 1 :(得分:1)

\ $只是转义$字符,因此字面上会匹配$