Digits
Finding all numbers that are bigger than 1 in vim
2009/12/24
/^([2-9]d*|1d+) If we have a csv like structure The trick here is simple, lets look at the regex from the begining: ^ – start from the begining () – start and end of block [] – digits within this. So …