Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列の 8 文字目以降を任意の文字列のドットに置き換えられるようにしたい。これはどのように行うことができますか?
今私はこれを持っています:
if(tempName.length() > 10) { name.setText(tempName.substring(0, 10)); } else { name.setText(tempName); }