I'm trying to create regex for yyyy+, meaning have a positive match for every year that is greater then year yyyy. for ex. the text is 2017+ and it will have to match for 2017, 2018, 2019 ..., but it will not match 2016. I did a research on the subject, but almost of the results are for yyyy format. To give the context, the data is stored in mongodb database as string in format as yyyy+, yyyy- or yyyy and I will query the documents using regex.
Also, another question is this possible in regex ?