Hi all,


Thanks for your co-operation and guidance in solving the problem. Finally I solved the problem by using the following
command.

I have done like this :

To add any thing at the beginning of the line :-

:%s/^/you want?

For example : I have a text like 1.23455. After applying the above it will be '1.23455

To add at end of the line :-

:%s/$/you want?


Now the above text will become '1.23455', the result I want.

NOTE : ^ is Shift + 6

Thanks for everything.