正则表达式文件命名约定

时间:2017-02-01 16:36:27

标签: regex

我正在寻找具有以下约定的文件:

  

123.987654321.FileName.pdf

  1. 扩展名可以是(.pdf,.tif,.tiff)

  2. 数字可以是字母或数字,也不是具体的

  3. 到目前为止,我有这个:

    \\d+.\\w.\\w.
    

    但它不起作用。

2 个答案:

答案 0 :(得分:0)

您需要在模式中转义/v1/solr_clusters/{solr_cluster_id}/stats

Dim IE As Object 
Dim myvalue as string

IE = CreateObject("internetexplorer.application")
IE.navigate("mypage")

While Not IE.ReadyState = WebBrowserReadyState.Complete
    Application.DoEvents()
End While

myValue = IE.document.getElementById("theValue").getAttribute("value")
Debug.Print(myValue)

https://regex101.com/r/EzeAir/1

答案 1 :(得分:-1)

这就是答案。

\d+\.\d+\.\w+\.\w+