Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

remove part of string java

// Works only if you have a certain character at which you want to cut
String text = "Image.png";

String[] cutText = text.split(".");

// cutText[0] has value "Image"
// cutText[1] has value "png"
 
PREVIOUS NEXT
Tagged: #remove #part #string #java
ADD COMMENT
Topic
Name
9+3 =