我想匹配一個文件,這個文件可以是任何東西,例如test.txt。匹配一個表達式到字符串的末尾
我試圖從提取文本example.txt中www.example.com/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.
這是正確的方法來取出文件?
這是我一直在使用源:我還使用Java進行我正則表達式http://www.regular-expressions.info/java.html
。