Created
October 29, 2013 03:13
-
-
Save kyamagu/7208688 to your computer and use it in GitHub Desktop.
Concatenate an array into a single string.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function output = strjoin(input, separator) | |
%STRJOIN Concatenate an array into a single string. | |
% | |
% S = strjoin(C) | |
% S = strjoin(C, separator) | |
% | |
% Description | |
% | |
% S = strjoin(C) takes an array C and returns a string S which concatenates | |
% array elements with comma. C can be a cell array of strings, a character | |
% array, a numeric array, or a logical array. If C is a matrix, it is first | |
% flattened to get an array and concateneted. S = strjoin(C, separator) also | |
% specifies separator for string concatenation. The default separator is comma. | |
% | |
% Examples | |
% | |
% >> str = strjoin({'this','is','a','cell','array'}) | |
% str = | |
% this,is,a,cell,array | |
% | |
% >> str = strjoin([1,2,2],'_') | |
% str = | |
% 1_2_2 | |
% | |
% >> str = strjoin({1,2,2,'string'},'\t') | |
% str = | |
% 1 2 2 string | |
% | |
if nargin < 2, separator = ','; end | |
assert(ischar(separator), 'Invalid separator input: %s', class(separator)); | |
separator = strrep(separator, '%', '%%'); | |
output = ''; | |
if ~isempty(input) | |
if ischar(input) | |
input = cellstr(input); | |
end | |
if isnumeric(input) || islogical(input) | |
output = [repmat(sprintf(['%.15g', separator], input(1:end-1)), ... | |
1, ~isscalar(input)), ... | |
sprintf('%.15g', input(end))]; | |
elseif iscellstr(input) | |
output = [repmat(sprintf(['%s', separator], input{1:end-1}), ... | |
1, ~isscalar(input)), ... | |
sprintf('%s', input{end})]; | |
elseif iscell(input) | |
output = strjoin(cellfun(@(x)strjoin(x, separator), input, ... | |
'UniformOutput', false), ... | |
separator); | |
else | |
error('strjoin:invalidInput', 'Unsupported input: %s', class(input)); | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment