Filter löschen
Filter löschen

How to delete the first or the first two characters in a string?

229 Ansichten (letzte 30 Tage)
Hello,
How can i delete the first two characters of this string? Thank you
string='W987';

Akzeptierte Antwort

KSSV
KSSV am 15 Mai 2020
Bearbeitet: KSSV am 15 Mai 2020
string(1:2) = [] % To remove the firt two elements

Weitere Antworten (1)

the cyclist
the cyclist am 28 Apr. 2022
In modern MATLAB parlance, 'W987' is a character array, not a string.
@KSSV's answer is accurate in your case, but will not work on the string "W987". The following will work for either a character array or a string:
c = 'W987';
eraseBetween(c,1,2)
ans = '87'
s = "W987";
eraseBetween(s,1,2)
ans = "87"

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by