left characters of a string
104 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Danielle Leblanc
il 6 Lug 2011
Risposto: Steven Lord
il 26 Nov 2022
if I have a name 'Microsoft', how can i get the first 6 characters 'Micros'?
0 Commenti
Risposta accettata
Andrei Bobrov
il 6 Lug 2011
name = 'Microsoft'
out = name(1:6)
2 Commenti
Stephen23
il 26 Nov 2022
name = 'Microsoft';
name(1:min(end,6))
name = 'Cat';
name(1:min(end,6))
Più risposte (1)
Steven Lord
il 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 Commenti
Vedere anche
Categorie
Scopri di più su String in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!