TypeScript substr()で文字列の先頭の文字を削除するサンプル
環境
Windows 11 Pro 64bit
TypeScript 4.4.4
構文
const result: string = 文字列.substr(1)
substr()の引数に「1」を指定します。
呼び出した文字列(string)の最初の文字を削除した文字列を返します。
使用例
const tt: string = "STUDYSKILL" const result: string = tt.substr(1) console.log(result)
実行結果
[LOG]: “TUDYSKILL"