I am trying to replace/delete few columns in a pattern.
example of the pattern is as follows:
(. xx,asdf,gh,df.)
And i want to make it like:
(.asdf,gh,df.)
For search,i used /(.\zs[^,]\ze[^,^,^.)]
This is not helping the search.
This is also highlighting first column in every pattern. i.e ex (. 12, 23,34.) pattern also.
the answer to my search is highlighting x in the first pattern and empty space before 1 in second pattern.
i want my search to work for the first pattern only. The first step of search for me is not working as expected.
could some one help me out here. thanks a lot for the help in advance.