Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string with "_" separator like "A_B_C_D_F". I want to fetch the value after the 2nd "_" separator to 3rd separator. In this example the value will be "C".

Please help me to do this in efficient way.

share|improve this question

3 Answers

up vote 7 down vote accepted
String value = yourString.split("_")[2];
share|improve this answer

Split your string based on "_" and from the resultant array, get the array[2] element. That will be the output you need. Example to get it in one line of code is -

String str = myStr.split("_")[2];
share|improve this answer
+1 at least the OP should think without blindly copy pasting – Sri Kumar Nov 29 '10 at 9:27

You can use String.split function like so:

String value = "A_B_C_D";
String splits = value.split("_");
String secondValue = splits[2];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.