How to remove (;) from a string?
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
I have a string '[1;0;0;0;1;0;0;0;1;0;0;0;1;0;0;0;1;0;0;0;1;0;0;0]'
how to remove ';' so that I can get output as 100010001000100010001000
help me out
than you
0 个评论
回答(1 个)
the cyclist
2019-10-3
If s is your string, then
s = regexprep(s,';','')
will remove the semicolons from it.
0 个评论
此问题已关闭。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!