* oskar [2007.03.27 11:25]: > I have a vim script which I want to use to > search & replace a part out of a given line. The > fields in the line are based on field length and > the field I want to change starts at position 33 > and ends after 4 charachter.
Sample data and the result you expect would make things so much easier... This will match characters in columns 33-36: /\%33c.... :h /\%c -- JR
