0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Java】文字列の一部を抜き出す

Posted at

#プログラミング勉強日記
2020年12月6日
文字列の一部を抜き出せるsubstringメソッドについて学んだので使い方をまとめる。

#substringメソッドとは
 substringメソッドは文字列の一部を取得するためのメソッドである。文字列のbegin+1~end文字目を抜き出すことを抜き出すことができる。引数endを省略するともでき、省略した場合はbegin+1文字目から最後の文字列の末尾まで抜き出す。新しい文字列を返している。

public String substring(int begin [,int end])
// begin:開始位置
// end:終了位置

#サンプルコード

public class Main {
  public static void main(String[] args) {
    String str = "Good Morning Everyone.";     // String型の変数strに文字を代入
    System.out.println(str.substring(5));      // 6文字目から最後までを取得して出力
    System.out.println(str.substring(5, 12));  // 6文字目から12文字目まで取得 
  }
}
実行結果
Morning Everyone.
Morning

#参考文献
substringメソッド
1分でわかる文字列の一部を切り出しするsubstringの使い方【Java Stringクラス】

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?