Extracting the numeric part from a cell
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Mahdi Khademishamami
am 17 Nov. 2021
Kommentiert: Mahdi Khademishamami
am 17 Nov. 2021
Hi everyone,
I have a column string in this format
"injection-0:94577)"
"injection-0:94578)"
"injection-0:94579)"
"injection-0:94580)"
"injection-0:94581)"
"injection-0:94582)"
"injection-0:94583)"
I want to extract the numeric part that starts with 9 like 94577 from roow one for instance. Can anyone help please? Thank you.
0 Kommentare
Akzeptierte Antwort
Paul
am 17 Nov. 2021
str = ["injection-0:94577)"
"injection-0:94578)"
"injection-0:94579)"
"injection-0:94580)"
"injection-0:94581)"
"injection-0:94582)"
"injection-0:94583)"]
newstr = extractBefore(extractAfter(str,":"),")")
3 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!