Re: searching for a string that has many '/' characters

2007-02-15 Thread malahal
Gary Johnson [EMAIL PROTECTED] wrote: > On 2007-02-02, [EMAIL PROTECTED] wrote: > > I have a string that has lots of forward slashes. I need to search it > > and delete it (e.g. unix path name). I could use a backslash for > > everything forward slash and find it in vim. Is there a way I need not

Re: searching for a string that has many '/' characters

2007-02-11 Thread A.J.Mechelynck
David Rock wrote: * Yakov Lerner <[EMAIL PROTECTED]> [2007-02-11 05:04]: On 2/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I have a string that has lots of forward slashes. I need to search it and delete it (e.g. unix path name). I could use a backslash for everything forward slash and f

Re: searching for a string that has many '/' characters

2007-02-11 Thread A.J.Mechelynck
Yakov Lerner wrote: On 2/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I have a string that has lots of forward slashes. I need to search it and delete it (e.g. unix path name). I could use a backslash for everything forward slash and find it in vim. Is there a way I need not do that? For

Re: searching for a string that has many '/' characters

2007-02-11 Thread Georg Dahn
I have a string that has lots of forward slashes. I need to search it and delete it (e.g. unix path name). I could use a backslash for everything forward slash and find it in vim. Is there a way I need not do that? For now, I use 'grep -n' to get the line number and then delete it. I don't actual

Re: searching for a string that has many '/' characters

2007-02-11 Thread David Rock
* Yakov Lerner <[EMAIL PROTECTED]> [2007-02-11 05:04]: > On 2/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > >I have a string that has lots of forward slashes. I need to search it > >and delete it (e.g. unix path name). I could use a backslash for > >everything forward slash and find it in v

Re: searching for a string that has many '/' characters

2007-02-11 Thread Yakov Lerner
On 2/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I have a string that has lots of forward slashes. I need to search it and delete it (e.g. unix path name). I could use a backslash for everything forward slash and find it in vim. Is there a way I need not do that? For now, I use 'grep -n'

Re: searching for a string that has many '/' characters

2007-02-09 Thread Gary Johnson
On 2007-02-02, [EMAIL PROTECTED] wrote: > I have a string that has lots of forward slashes. I need to search it > and delete it (e.g. unix path name). I could use a backslash for > everything forward slash and find it in vim. Is there a way I need not > do that? For now, I use 'grep -n' to get the

RE: searching for a string that has many '/' characters

2007-02-09 Thread Gene Kwiecinski
>I have a string that has lots of forward slashes. I need to search it >and delete it (e.g. unix path name). I could use a backslash for >everything forward slash and find it in vim. Is there a way I need not >do that? For now, I use 'grep -n' to get the line number and then delete >it. I don't ac

Re: searching for a string that has many '/' characters

2007-02-08 Thread Bill McCarthy
On Fri 2-Feb-07 7:52pm -0600, [EMAIL PROTECTED] wrote: > I have a string that has lots of forward slashes. I need to search it > and delete it (e.g. unix path name). I could use a backslash for > everything forward slash and find it in vim. Is there a way I need not > do that? For now, I use 'gre

Re: searching for a string that has many '/' characters

2007-02-08 Thread Kazuo Teramoto
On 2/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I have a string that has lots of forward slashes. I need to search it and delete it (e.g. unix path name). I could use a backslash for everything forward slash and find it in vim. Is there a way I need not do that? For now, I use 'grep -n'