How to separate a string(1x1 cell) into a 1x4 cell

17 vues (au cours des 30 derniers jours)
Akana Juliet
Akana Juliet le 18 Juin 2021
Commenté : Akana Juliet le 18 Juin 2021
Hi everyone! I have a long string of 4 hex codes separated by spaces, (Example: 'A5E6C11D B5E6C11D C5E6C11D D5E6C11D') stored in one 1x1 cell (Or rather a 1x35 char type)
But I would like to separate each hexadecimal string into a 1x4 vector (or a 4x1 doesn't matter)
result = strjoin(HexCodes(fourElementIndex), ' ');
The above is the code I have that prints all 4 selected HexCodes into one cell. It's a little tricky because I am pulling the Hex codes from a cell of "HexCodes" by the fourElementIndex(1x4 double) which stores the 4 numbers that tell which hex codes to pull. Maybe there is a code that can follow this one that I have?
Any help would be greatly appreciated!

Réponse acceptée

Stephen23
Stephen23 le 18 Juin 2021
chr = 'A5E6C11D B5E6C11D C5E6C11D D5E6C11D';
spl = split(chr)
spl = 4×1 cell array
{'A5E6C11D'} {'B5E6C11D'} {'C5E6C11D'} {'D5E6C11D'}
  1 commentaire
Akana Juliet
Akana Juliet le 18 Juin 2021
Fantastic! Stephen comes through yet again!

Connectez-vous pour commenter.

Plus de réponses (1)

James Tursa
James Tursa le 18 Juin 2021
If the hex codes are always 8 characters, why can't you just pick off the characters you want? E.g.,
{result(1:8),result(10:17),result(19:26),result(28:35)}

Catégories

En savoir plus sur Cell Arrays dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by