from
XML Toolbox
by Marc Molinari
Conversion of MATLAB data types to XML and vice versa.
|
| strsplit.m |
%function cstr = strsplit(strarr, ch)
%
% FUNCTIONALITY
% Splits string <strarr> at positions where substring <ch>
% occurs. If <ch> is not given, then ascii character 10
% (newline) is the splitting position.
% This would split for example a read-in file into its lines.
%
% INPUT
% strarr string to split
% ch optional, character or substring at which to split,
% default is character ascii 10 = 'newline'
%
% OUTPUT
% cstr cell array of strings, all leading and trailing
% spaces are deleted. Substring ch is removed from string.
%
% EXAMPLES
% a = strsplit('aaa bbb ccc ', ' ')
% Result: a{1}='aaa', a{2}='bbb', a{3}='ccc'
% a = strsplit('user@server', '@')
% Result: a{1}='user', a{3}='server'
% a = strsplit('aabbccddeeffgg', 'dd')
% Result: a{1}='aabbcc', a{2} = 'eeffgg'
%
% RELATED
% strfun, depreciated stringify.m
% Copyright (C) 2002 Marc Molinari, University of Southampton
% Author: Dr Marc Molinari <m.molinari@soton.ac.uk>
% $Revision: 1.1 $ $Date: 2005/04/15 17:12:14 $ $Tag$
|
|
Contact us at files@mathworks.com