Meaning of pound (#) in a regular expression

前端 未结 3 1053
野的像风
野的像风 2021-02-19 05:59

I have a regular expression with a pound # modifier.

What does \\# mean in a regular expression? What does the # mean in a regul

3条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-19 06:26

    I just had this same issue. It turned out that the prior programmer "missed" when changing all the "old code" from # to | and it was a simple mistake. I found this by checking all other code in the app and found NO other # symbols, but many similar areas of code with | included. And the | was right next to the # in this code. So someone was swapping out old regex for new regex and "missed".

提交回复
热议问题