[Show all top banners]

dhimaar1
Replies to this thread:

More by dhimaar1
What people are reading
Subscribers
:: Subscribe
Back to: Kurakani General Refresh page to view new replies
 Help with Java programming
[VIEWED 4140 TIMES]
SAVE! for ease of future access.
Posted on 02-20-08 6:50 AM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

hi. somebody plz help me with this java programming problem.

i have a string

String m = Nepal is beautiful.

So how do i replace all the characters with '*".

so that the  output looks like this.

new string m1 = ***** ** *********

 


 
Posted on 02-20-08 7:49 AM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

Here it comes...



package replace;

/**
 *

 */

import java.io.*;
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        String mystring =" ";
    System.out.println("Enter the string");
     BufferedReader stdin = new BufferedReader( new InputStreamReader( System.in ) );
       
            try
            {
                mystring = stdin.readLine();
            } catch ( IOException e) { };
                               
       StringBuffer output =new StringBuffer(' ') ;
      
       for (int i=0;i<mystring.length();i++)
       {
          if (mystring.charAt(i)!=' ')
               output.append("*");
          else
               output.append(" ");
                       }
     System.out.println(output);
    }

}


 
Posted on 02-20-08 7:51 AM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

there are however other ways to do it too...

 
Posted on 02-20-08 7:53 AM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

thanks for the help. but i am supposed to do it without using IO......... Is there a way to do it with only String class?? PLZ help me
Last edited: 20-Feb-08 07:58 AM
Last edited: 20-Feb-08 07:59 AM

 
Posted on 02-20-08 8:09 AM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

In that case, that is much more easier..just give a tweak to the code that i provided...

 
Posted on 02-20-08 8:53 AM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

String m = "Nepal is beautiful";

String m1 = m.replaceAll("\\w", "*");


 
Posted on 02-20-08 10:45 AM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

thanks a lot guys for your time and help...............


 
Posted on 02-20-08 3:06 PM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

      Here it goes:      

       String a="Nepal is beautiful";
       String b="";    

        int n=a.length();
        for(int i=0;i<n;i++){
            if(Character.isWhitespace(a.charAt(i))){
                b+=" ";
            }
            else{
                b+="*";
            }
        }
       System.out.println(b);
 


Please Log in! to be able to reply! If you don't have a login, please register here.

YOU CAN ALSO



IN ORDER TO POST!




Within last 60 days
Recommended Popular Threads Controvertial Threads
What are your first memories of when Nepal Television Began?
TPS Re-registration case still pending ..
nrn citizenship
अमेरिकामा बस्ने प्राय जस्तो नेपालीहरु सबै मध्यम बर्गीय अथवा माथि (higher than middle class)
Travelling to Nepal - TPS AP- PASSPORT
ढ्याउ गर्दा दसैँको खसी गनाउच
काेराेना सङ्क्रमणबाट बच्न Immunity बढाउन के के खाने ?How to increase immunity against COVID - 19?
TPS Work Permit/How long your took?
मन भित्र को पत्रै पत्र!
Informatica consultancy share
Are you ready to know the truth?
Travelling on TPS advance travel document to different country...
Thank you for the sajha policy
lost $3500 on penny stocks !!!
Nepali doctors future black or white usa ?
Morning dharahara
महँगो अण्डाको पिकल्प : कुखुरा र खोर भाडामा लिने
चितवनको होस्टलमा १३ वर्षीया शालिन पोखरेल झुण्डिएको अवस्था - बलात्कार पछि हत्याको शंका - होस्टेलहरु असुरक्षित
Does the 180 day auto extension apply for TPS?
Guess how many vaccines a one year old baby is given
NOTE: The opinions here represent the opinions of the individual posters, and not of Sajha.com. It is not possible for sajha.com to monitor all the postings, since sajha.com merely seeks to provide a cyber location for discussing ideas and concerns related to Nepal and the Nepalis. Please send an email to admin@sajha.com using a valid email address if you want any posting to be considered for deletion. Your request will be handled on a one to one basis. Sajha.com is a service please don't abuse it. - Thanks.

Sajha.com Privacy Policy

Like us in Facebook!

↑ Back to Top
free counters