匹配字符串中的年份 (REGEX)

Match year in string (REGEX)

我有一些数据,例如:

10/2015
11/2020
09/2016
01/2014

我想匹配 > 2014(未来)的所有内容,所以我尝试使用 REGEX:

<cfif Refind("201[5-9]|202[0-9]|203[0-9]", Date) eq 1>
<!--- dosmth --->
</cfif>

我也试过:

<cfif Refind("201[5-9]$|202[0-9]$|203[0-9]$", Date) eq 1>
<!--- dosmth --->
</cfif>

不匹配任何内容。我错过了什么?谢谢!

找到了。

<cfif Refind("^[0-9]{2}\/(201[5-9]|202[0-9]|203[0-9])$", Date) eq 1>