Skip to main content

Program in java to extract words and print the words starting with a inputted character

import java.io.*;
import java.lang.*;

class Ser
{
public static void main(String args[])throws Exception
{
DataInputStream dd= new DataInputStream(System.in);
System.out.println("enter a string ");
String str=dd.readLine();

System.out.println("enter a character");
char ch=(char)System.in.read();
s o =new s();
if(o.extract(str,ch)==true)
o.display();
else
System.out.println("NOT FOUND");

}

}
class s
{
String s2="";
public boolean extract(String str,char ch2)
{
str=str+" ";
String s3="";
boolean b=false;
int i;
for(i=0;i<str.length();i++)
{
char ch= str.charAt(i);
if(ch != ' ')
s3=s3+ch;
else
{
if(s3.charAt(0)==ch2)
   {
b=true;

s2=s2+" "+s3;
    }
s3="";
 }
}

return b;
}

public void display()
{
System.out.println(s2);
}

}

Comments

Popular posts from this blog

PROGRAM TO PRINT COLOURS OF RAINBOW ACCORDING TO THE NO. INPUTTED BY THE USER

#include,stdio.h> #include<conio.h> void main() { int ch; printf("INPUT A NUMBER\n"); scanf("%d",&ch); switch(ch) { case 6: printf("Red"); break; case 5 : printf(" Orange"); break; case 4 : printf(" Yellow"); break; case 3 : printf(" Green"); break; case 2 : printf(" Blue"); break; case 1 : printf(" Indigo"); break; case 0 : printf(" Violet"); break; default : ("wrong input "); } } SIMPLE PROGRAMS FIND TYPE OF THE TRIANGLE TEMPERATURE CONVERSION COMMISSION OF A SALESMAN PRINT NUMBERS IN DESCENDING ORDER BIGGEST NUMBER AMONG THREE NUMBERS CALCULATE DIVISION A YEAR IS LEAP OR NOT A NUMBER IS ODD OR EVEN PRINT THE SQUARE ROOT ELSE PRINT N TO THE POWER 5 PRINT A NEW NUMBER BY ADDING 1 TO EACH DIGIT OF THE NUMBER PRINT THE NO. OF CURRENCY NOTES ACCORDING TO THE AMOUNT ENTERED DATA STRUCTURES ENTER DETAILS OF A STUDENT ENTER DETAILS OF A ST...

PROGRAM TO ENTER THREE NOS. AND PRINT THE BIGGEST AMONG THEM

#include<stdio.h> #include<conio.h> void main() { long int a,b,c,bg; clrscr(); printf("ENTER THREE NOS."); scanf("%ld%ld%ld",&a,&b,&c); if(a<0||b<0||c<0) printf("WRONG INPUT"); else { if(a>=b&&a>=c) bg=a; else if(b>=a&&b>=c) bg=b; else bg=c; printf("BIGGEST NO.%ld",bg); } getch(); } SIMPLE PROGRAMS FIND TYPE OF THE TRIANGLE TEMPERATURE CONVERSION COMMISSION OF A SALESMAN PRINT NUMBERS IN DESCENDING ORDER BIGGEST NUMBER AMONG THREE NUMBERS CALCULATE DIVISION A YEAR IS LEAP OR NOT A NUMBER IS ODD OR EVEN PRINT THE SQUARE ROOT ELSE PRINT N TO THE POWER 5 PRINT A NEW NUMBER BY ADDING 1 TO EACH DIGIT OF THE NUMBER PRINT THE NO. OF CURRENCY NOTES ACCORDING TO THE AMOUNT ENTERED DATA STRUCTURES ENTER DETAILS OF A STUDENT ENTER DETAILS OF A STUDENT USING STRUCTURE WITHIN A STRUCTURE   I MPORTANT EXAMPLES   DIFFERENCE BETWEEN DIFFER...

Java program to take 10 cities name in an array and display which starts with consonant

import java.io.*; import java.lang.*; public class Main {   public static void main (String[]args)   {     for (int i = 0; i < args.length; i++)       {             switch (args[i].charAt (0))               {               case 'a':               case 'e':               case 'i':               case 'o':               case 'u':               case 'A':               case 'E':               case 'I':               case 'O':               case 'U':                break; ...