我正在尝试匹配一个文件,这个文件可以是任何东西,例如 test.txt。
我正在尝试从 www.example.com/example.txt 中提取文本 example.txt
这是我想出的正则表达式:
\\../$
\\. for to match the dot
. for any characters in between 'com' and the forward slash
/$ to march forward slash to the end of the string.
这是获取文件的正确方法吗?
这是我一直在使用的来源:http ://www.regular-expressions.info/java.html
我也在为我的正则表达式使用 Java。