简体   繁体   中英

Copy a string until character found in Java

Hello I was wandering how can I copy a piece of a String in Java until a character/symbol is found. In my case the original string is: "hello.1234" and I want only "hello" , so that every thing after the symbol . is discarded.

Any idea? many thanks

EDIT:

solved as follows:

String partBeforeFullStop = input.split("\\.")[0];

Use String#indexOf(int) and String#substring(int) .

String input = "hello.1234";
String output = input.substring(0, input.indexOf('.'));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM