I have this IP address 10.203.39.231 and I need to pick only the 4th octet from it. I did use ipAddress.substring(8, ipAddress.lastIndexOf("."). I need a .split method to help me out with this

LINUX+ AND LPIC-1 GDE.TO LINUX CERTIF.
5th Edition
ISBN:9781337569798
Author:ECKERT
Publisher:ECKERT
Chapter12: Network Configuration
Section: Chapter Questions
Problem 2DE
icon
Related questions
Question
100%

I have this IP address 10.203.39.231 and I need to pick only the 4th octet from it. I did use ipAddress.substring(8, ipAddress.lastIndexOf("."). I need a .split method to help me out with this

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

This is what I did since mine is in Java:
private String generateId(String ipAddress){

if(ipAddress != null){

String [] to4thOctet = ipAddress.split(".");

String toParse = to4thOctet[3];

return BuildConfig.USER_ID + toParse;

} else{

return username;

}

}

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Network Protocols
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
LINUX+ AND LPIC-1 GDE.TO LINUX CERTIF.
LINUX+ AND LPIC-1 GDE.TO LINUX CERTIF.
Computer Science
ISBN:
9781337569798
Author:
ECKERT
Publisher:
CENGAGE L