Left of a string

13 visualizzazioni (ultimi 30 giorni)
Matthew
Matthew il 14 Apr 2014
Commentato: Matthew il 14 Apr 2014
Hello, I have a column in my table array called key_value.
The array contains a string such as '1234567891234|XYZ|9999'.
How do I code for each of these cells extract the first 13 characters?
I have tried key_value(1:13) but this does not work and simply pulls out the first 13 rows of records.

Risposta accettata

Walter Roberson
Walter Roberson il 14 Apr 2014
cellfun(@(S) S(1:13), key_value, 'Uniform', 0)
  1 Commento
Matthew
Matthew il 14 Apr 2014
Walter, you're a star!
Thanks for your help!

Accedi per commentare.

Più risposte (1)

Nitin
Nitin il 14 Apr 2014
If you are accessing a cell array, you should use curly braces. Check out the examples here

Categorie

Scopri di più su Cell Arrays in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by