left characters of a string
105 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Danielle Leblanc
am 6 Jul. 2011
Beantwortet: Steven Lord
am 26 Nov. 2022
if I have a name 'Microsoft', how can i get the first 6 characters 'Micros'?
0 Kommentare
Akzeptierte Antwort
Andrei Bobrov
am 6 Jul. 2011
name = 'Microsoft'
out = name(1:6)
2 Kommentare
Stephen23
am 26 Nov. 2022
name = 'Microsoft';
name(1:min(end,6))
name = 'Cat';
name(1:min(end,6))
Weitere Antworten (1)
Steven Lord
am 26 Nov. 2022
This wasn't an option when the question was originally asked, but the extractBefore function will work for both char vectors and string arrays.
c = 'Microsoft'
c6 = extractBefore(c, 7)
s = string(c)
s6 = extractBefore(s, 7)
0 Kommentare
Siehe auch
Kategorien
Mehr zu String finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!