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.
|
I have a string with Please help me to do this in efficient way. |
|||
|
|
|
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 -
|
||||
|
|
|
You can use
|
|||
|
|