[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: filesep extension
From: |
Michael Goffioul |
Subject: |
Re: filesep extension |
Date: |
Wed, 12 Nov 2008 10:37:48 +0000 |
On Tue, Nov 11, 2008 at 6:28 PM, Jaroslav Hajek <address@hidden> wrote:
> It seems I tried an ugly trick that wouldn't work. So here's a
> hopefully working version:
>
> function varargout = strchr (str, chars, varargin)
> if (nargin < 2 || ! ischar (str) || ! ischar (chars))
> print_usage ();
> endif
> f = false (1, 256);
> f(chars+1) = true;
> varargout = cell (1, nargout);
> varagout{1} = [];
> [varargout{:}] = find (reshape (f(str+1), size (str)), varargin{:});
> endfunction
I like this one. Why do you need to reshape?
How about commiting?
Michael.
- filesep extension, Michael Goffioul, 2008/11/11
- filesep extension, John W. Eaton, 2008/11/11
- Re: filesep extension, Jaroslav Hajek, 2008/11/11
- Re: filesep extension,
Michael Goffioul <=
- Re: filesep extension, Jaroslav Hajek, 2008/11/12
- Re: filesep extension, Michael Goffioul, 2008/11/12
- Re: filesep extension, Jaroslav Hajek, 2008/11/12
- Re: filesep extension, Søren Hauberg, 2008/11/12