I have ip address example "27.96.168.92" and would like to reorder the each Octates in the ip address. so the output should be "92.168.96.27".
I can achieve this with string split functionality. Is there any way to achieve this without split functionality of java string, something like load it to char array and then loop ?
Actual ip : "27.96.168.92" expected ip : "92.168.96.27"