-7

String から Int のみを出力し、String から最初の 2 文字も出力したいので、どうすればそれができるか教えてください。

仮定する、

import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;


public class match1 {

    public static void main(String[] args) throws IOException {
        // TODO Auto-generated method stub

        String address = "1234 main street";
    }
}

出力は次のようになります。

1234年

どうすればそれができますか助けてください!! ありがとう!!

4

1 に答える 1