Question: String dataFields is read from input. dataFields contains values delimited by dashes ( ' - ' ) . Assign thirdDash with the index of the
String dataFields is read from input. dataFields contains values delimited by dashes Assign thirdDash with the index of the third occurrence of a dash in dataFields.
Ex: If the input is JohnParvatiRalitzaFatimaCarlos, then the output is:
First three fields: JohnParvatiRalitza
import java.util.Scanner;
public class FirstThreeFields
public static void mainString args
Scanner scnr new ScannerSystemin;
String dataFields;
int i;
int freqOccurred ;
int thirdDash ;
dataFields scnrnextLine;
Your code goes here
System.out.printlnFirst three fields: dataFields.substring thirdDash;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
