The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 06-25-2007
vino's Avatar
vino vino is offline Forum Staff  
Supporter (in vino veritas)
  
 

Join Date: Feb 2005
Location: Bangalore, India
Posts: 2,798
Quote:
Originally Posted by Shell_Life View Post
Vino,
Your substitution will replace all instances of '.', including '19.23'.
The Regular Expression ' *' means zero or more instances of space.
In other words, it will consider anything as true, as any non-space
character means zero instances of space.
Also the solution should keep the space after the name.
Here is one possible solution:

Code:
:%s/ \./ NULL/
Good catch !