Re: Using ^ (match start of line) and \% (match column) together

2016-06-08 Thread Nikolay Aleksandrovich Pavlov
2016-06-08 11:40 GMT+03:00 Nicola : > On 2016-06-07 20:47:07 +, Nikolay Aleksandrovich Pavlov said: > >> 2016-06-07 22:45 GMT+03:00 Nicola : >>> >>> The following patterns both match up to column 17 included: >>> >>> /.*\%17v >>> /.*\%17v. >>> >>> If ^ is added, the two are no more equivalent:

Re: Using ^ (match start of line) and \% (match column) together

2016-06-08 Thread Nicola
On 2016-06-07 20:47:07 +, Nikolay Aleksandrovich Pavlov said: 2016-06-07 22:45 GMT+03:00 Nicola : The following patterns both match up to column 17 included: /.*\%17v /.*\%17v. If ^ is added, the two are no more equivalent: /^.*\%17v <-- matches up to column 16 /^.*\%17v.<-- matc