How can I select all .cs files?
MikeKholomeev opened this issue · 6 comments
MikeKholomeev commented
How can I select all .cs files?
MikeKholomeev commented
\.cs$
- doesnt work
Socolin commented
Try ^.+\.cs$
MikeKholomeev commented
Yea! Thanks, it helped.
I wonder - does it mean that regex pattern should match the whole file name?
Socolin commented
Yes, I think this is how Java regex works, I'll check later the details
Socolin commented
So yes, this is how Pattern
work in java
There is another method hitEnd()
that do the partial match, since there is an easy workaround I think I'll let this that way.
MikeKholomeev commented
Ok. In this case, I think, it's better to add this info to the Readme/description