I wonder if it accepts ^ and $ in regular expressions?
I tried to look for all occurences of </a> that are on a single line, that is
```
Fred
</a>
George
```
but not
```
Fred</a>
George
```
or
```
Fred
</a>George
```
So I used
```
^</a>$
```
but found no occurencesin posts, even if they exists. Any idea why?
关闭于 2024-11-23 1 条评论