3310487509
30.11.2022, aktualisiert am 01.12.2022
4097
1
3
In Java, how do you convert a String to an array?
String myStringArray = "[491174, 414529, 414557]"; I just want this section of output 491174, 414529, and 414557. I tried a variety of approaches to convert strings to arrays and other stuff. I tried something, and I've included the code below.
This is the result:
This is the specific code that I have been working on a project and I have encountered an issue.
Please assist me if you are able.
String myStringArray = "[491174, 414529, 414557]";
String newArray = myStringArray.replaceAll(" ", "");
System.out.println("Before Remove : " + newArray);
String remove = newArray.replaceAll("[^a-zA-Z0-9]", ",");
String rm = remove.replaceFirst(",", "");
System.out.println("After Remove : " + rm);
Before Remove : [491174,414529,414557]
After Remove : 491174,414529,414557,
Please assist me if you are able.
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 4812709988
Url: https://administrator.de/contentid/4812709988
Ausgedruckt am: 21.11.2024 um 19:11 Uhr
1 Kommentar
class test {
public static void main(String args){
String myString = "[491174, 414529, 414557]";
String arr = StringToArray(myString);
System.out.println(String.join("\n",arr));
}
public static String StringToArray(String str){
return str.replaceAll("[\\[\\]\\s]","").split(",");
}
}
Test: https://tio.run/##VU9dq4MwDH33V4Q@WXAFh2OMsQd/w@6b9aHXlVFXP2jiQC777S5XN8 ...