How to write the string after a spesific point in cell array?

1 Ansicht (letzte 30 Tage)
tinkyminky93
tinkyminky93 am 2 Jun. 2022
Bearbeitet: Stephen23 am 2 Jun. 2022
Hello,
Lets say I have a text file and it contains
ASDASDDSA 123213213 ASDADASDA 18128, ASDSAD [ 123 123 123 12 3 123123 123 123]
I want to take the [ 123 123 123 12 3 123123 123 123] part of this cell array. How can I do that? Its like find([) and a = array(55:end, 1)
Thank you
  1 Kommentar
Stephen23
Stephen23 am 2 Jun. 2022
Bearbeitet: Stephen23 am 2 Jun. 2022
You say that you have a text file (please upload a sample file by clicking the paperclip button) but then the rest of your question talks about a cell array (which you do not describe). Unclear.
"I want to take the [ 123 123 123 12 3 123123 123 123] "
As text, or do you actually want the numeric values?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Chunru
Chunru am 2 Jun. 2022
s = 'ASDASDDSA 123213213 ASDADASDA 18128, ASDSAD [ 123 123 123 12 3 123123 123 123]'
s = 'ASDASDDSA 123213213 ASDADASDA 18128, ASDSAD [ 123 123 123 12 3 123123 123 123]'
t = regexp(s, '\[[\d\s]*\]', 'match')
t = 1×1 cell array
{'[ 123 123 123 12 3 123123 123 123]'}

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by