如何使用^
和$
符号仅/blog/articles
在以下内容中进行解析?
我创建了 ex3.txt,其中包含:
/blog/article/1
/blog/articles
/blog
/admin/blog/articles
和正则表达式:
^/blog/articles$
似乎不起作用,就像我使用“regetron”键入它时一样(请参阅 learning regex the hard way),下一行没有输出。
这是我的确切程序:
在正确目录的命令行中,我键入:regetron ex3.txt。ex3.txt 包含一行,内容如下:
/blog/article/1 /blog/articles /blog /admin/blog/articles
尽管我已经尝试在条目之间使用换行符。
我输入,
^/blog/article/[0-9]$
下一行没有返回任何内容。我尝试发布的第一个解决方案,
^\/blog\/articles$
但没有返回任何内容。
在此先感谢 SOers!