remove the first 2 char of a string

8 次查看(过去 30 天)
I am new to Matlab and guess this will be EASY for someone...
I have
','B132-32','B134-22','S132-11','D532-32'
And I would like
'B132-32','B134-22','S132-11','D532-32'
Basically removing the first
',
How can i do this?!

采纳的回答

Stephen23
Stephen23 2021-4-1
What you show is a character vector, not a string. Which makes this easy using indexing:
c = ',''B132-32'',''B134-22'',''S132-11'',''D532-32'
c = ','B132-32','B134-22','S132-11','D532-32'
c(1:2) = []
c = 'B132-32','B134-22','S132-11','D532-32'

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by