In article <[EMAIL PROTECTED]>, Jerry Preston
wrote:

> Hi!
> 
> Is it possible to combine the following into one:
> 
>           s/^\s+;//;
>           s/\/\*/!/;
>           s/\*\///;

s/^\s+;//; s/\/\*/!/; s/\*\///;   # ;-)

Why would you want to? (Not that I know if you can) It's easier to see what
is being done when they are separate.


Even easier (I think) would be if you write:

        s|/\*|!|; # or
        s{/\*}{!};

-K
-- 
Kevin Pfeiffer
International University Bremen


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to