简体   繁体   中英

Java: Separate starting character from a string

How to get Starting alphabet from the string which contain numbers and other strings?

Like have to separate the alphabets before the numbers starts.

String value1 = "test123123hj";
String value2 = "demo312342343dfs";

Output should be:

value1 = "test"
value2 ="demo"

We can use the split method of string and pass in the regex to check the presence of digits.

"test123123hj".split("\\d+")[0]

This should give you the desired output.

在此处输入图像描述

@ChaitanyaWaikar's result is right. Try this.

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