How to remove single quotes around the string
453 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I have my string (which is actually a header line read from CSV file). single string in a row separated by somas as below:
name1,name2,name3,name10
I tried with both "strsplit and regexp" to split the string at "comma" and save to another variable as a column, but it giving me single quotes around each substring as follows:
'name1'
'name2'
'name3'
'name10'
my desired output:
name1
name2
name3
name10
Please someone help, many thanks in advance.
3 commentaires
Walter Roberson
le 28 Fév 2018
>> T = strsplit('name1,name2,name3,name10',',');
>> fprintf('%s\n', T{:})
name1
name2
name3
name10
Réponses (4)
dbmn
le 14 Août 2017
In Matlab, Strings (and Substrings) begin and end with the ' character. See Matlab Documentation for Char ans Strings
This character is not embedded in the string itself, but helps you figure out that you deal with a variable of datatyp char
- If you just want to work with them - don't worry, the ' will not be "baked" into your data
- if you want to output that data, you could use something like:
fprintf('%s\n', input{:})
- Oh and if you want to export to excel, dont worry, Matlab takes care of your '. The following code produces a file without the '
xlswrite('myfile', {'asd', 1, 2; 'qwe', 3, 4})
3 commentaires
Jan
le 14 Août 2017
Sorry, dbmn, I did not see your answer, when I typed mine. This is strange, because yours is 2 hours older.
Jan
le 14 Août 2017
Modifié(e) : Jan
le 14 Août 2017
The quotes do not belong to the data. They are just added, when you display the cell string in the command window. Try this:
str = 'name1,name2';
cstr = strsplit(str, ',')
This is shown in the command window:
cstr =
1×2 cell array
'name1' 'name2'
But the strings, the elements of the cell string, do not contain the quotes:
fprintf('%s\n', cstr{1});
or
any(cstr{1} == char(39)) % 0: No, the string does not contain a quote character
Please contain, what exactly "desired output" means: Do you mean the output to the command window or the contents of the variable?
5 commentaires
Stephen23
le 14 Mai 2020
Modifié(e) : Stephen23
le 14 Mai 2020
"I do precisely the same sort of shenanigans all the time in other systems: R, Python, plpgsql, JavaScript... even VBA. "
Using a string as a list index with IPython throws an error:
L = [1,2,3,4]
L['1']
Traceback (most recent call last):
File "<ipython-input-2-69e97d48164a>", line 1, in <module>
L['1']
TypeError: list indices must be integers or slices, not str
Does not work in R either:
x <- c(1,2,3)
x["1"]
[1] NA
R does allow the elements to be named, but then those are arbitrary names which do not correspond to indices.
Apparently JavaScript and VBA do permit using strings of numbers as indices, VBA even silently truncates any fractional part... the horror!
Jim Hokanson
le 13 Mai 2020
Since I stumbled across this when looking at ways of copying variables, specifically cell arrays of strings, from Matlab into Excel without single quotes I'll provide that solution here. With referencing a CSV file my guess is that the author was asking that question as well, although perhaps not as clearly ...
Converting a cell array of strings to a string array will all you to copy into Excel without the quotes.
A = {'name1'
'name2'
'name3'
'name10'};
B = string(A);
open B
%Right click in the variable editor and copy, then paste into Excel
0 commentaires
Peng He
le 23 Jan 2019
sprintf('%s\n',string(Your_array))
1 commentaire
Walter Roberson
le 23 Jan 2019
If you were going to do that you might as well just do
YourArray = 'name1,name2,name3,name10';
YourArray(YourArray == ',') = char(10);
or
YourArray = strrep(YourArray, ',', char(10))
or
YourArray = regexprep(YourArray, ',', '\n')
Voir également
Catégories
En savoir plus sur Data Import from MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!