How can I access char elements from the beginning up to some fixed index of the char?

1 vue (au cours des 30 derniers jours)
a = char(abdefghijk);
I want the output 'abcdefg'

Réponse acceptée

Walter Roberson
Walter Roberson le 7 Déc 2022

Plus de réponses (2)

Vikram Ojha
Vikram Ojha le 7 Déc 2022
Modifié(e) : Vikram Ojha le 7 Déc 2022
>> a='abcdefghijk'
>> a(1:5)
ans =
'abcde'
In genral a(1:n) % n for index
You can consider going through following doc: https://in.mathworks.com/help/matlab/ref/string.html, it will be helpful
In case you want you can take Matlab fundamental certification: https://matlabacademy.mathworks.com/details/matlab-fundamentals/mlbe

Steven Lord
Steven Lord le 7 Déc 2022
The extractBefore function will work both for char arrays and strings.

Catégories

En savoir plus sur Operators and Elementary Operations dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by