资源简介

解压以后按照提示安装好后,文件夹test里面有个例子。运行一下你就知道怎么用了。五分钟解决战斗!

资源截图

代码片段和文件信息

%function cstr = strsplit(strarr ch)
%
% FUNCTIONALITY
% Splits string  at positions where substring 
% occurs. If  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 
% $Revision: 1.1 $ $Date: 2005/04/15 17:12:14 $ $Tag$
 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    ..AD...         0  2005-04-15 18:12  xml_toolbox\CVS

     文件       2385  2005-04-15 18:12  xml_toolbox\INSTALL.TXT

     文件       1597  2005-04-15 16:22  xml_toolbox\LICENSE.TXT

     文件       6758  2005-01-28 13:12  xml_toolbox\matlab.xsd

     文件       1061  2005-04-15 18:12  xml_toolbox\strsplit.m

     文件       2211  2005-01-28 13:12  xml_toolbox\strsplit.p

     文件      43417  2010-01-20 18:20  xml_toolbox\tests\feature.xml

     文件        462  2010-01-20 15:56  xml_toolbox\tests\readxml.m

    ..AD...         0  2010-01-20 16:00  xml_toolbox\tests

     文件         73  2005-01-28 13:12  xml_toolbox\unblank.m

     文件       1114  2005-01-28 13:12  xml_toolbox\unblank.p

     文件        933  2005-04-15 18:12  xml_toolbox\xml_format.m

     文件      15907  2005-01-28 13:12  xml_toolbox\xml_format.p

     文件       1380  2005-04-15 18:12  xml_toolbox\xml_formatany.m

     文件      16417  2005-01-28 13:12  xml_toolbox\xml_formatany.p

     文件       1542  2005-04-15 18:12  xml_toolbox\xml_help.m

     文件        299  2005-01-28 13:12  xml_toolbox\xml_help.p

     文件       1068  2005-04-15 18:12  xml_toolbox\xml_load.m

     文件       3411  2005-01-28 13:12  xml_toolbox\xml_load.p

     文件        985  2005-04-15 18:12  xml_toolbox\xml_parse.m

     文件      26288  2005-01-28 13:12  xml_toolbox\xml_parse.p

     文件        517  2005-04-15 18:12  xml_toolbox\xml_parseany.m

     文件      12716  2005-01-28 13:12  xml_toolbox\xml_parseany.p

     文件        829  2005-04-15 18:12  xml_toolbox\xml_save.m

     文件       2519  2005-01-28 13:12  xml_toolbox\xml_save.p

     文件       1060  2005-04-15 15:55  xml_toolbox\xml_toolbox-version.txt

     文件     170797  2005-04-15 18:01  xml_toolbox\xml_toolbox.pdf

     目录          0  2010-01-20 15:37  xml_toolbox

----------- ---------  ---------- -----  ----

               315746                    28

............此处省略1个文件信息

评论

共有 条评论