[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 4182 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 200 days
Recommended Popular Threads Controvertial Threads
TPS Re-registration
What are your first memories of when Nepal Television Began?
निगुरो थाहा छ ??
TPS Re-registration case still pending ..
ChatSansar.com Naya Nepal Chat
Basnet or Basnyat ??
Sajha has turned into MAGATs nest
NRN card pros and cons?
Do nepalese really need TPS?
कता जादै छ नेपाली समाज ??
मन भित्र को पत्रै पत्र!
Will MAGA really start shooting people?
Democrats are so sure Trump will win
Top 10 Anti-vaxxers Who Got Owned by COVID
I regret not marrying a girl at least for green card. do you think TPS will remain for a long time?
TPS Work Permit/How long your took?
काेराेना सङ्क्रमणबाट बच्न Immunity बढाउन के के खाने ?How to increase immunity against COVID - 19?
Breathe in. Breathe out.
3 most corrupt politicians in the world
Dementia Joe has been selected to become the next President
Nas and The Bokas: Coming to a Night Club near you
Mr. Dipak Gyawali-ji Talk is Cheap. US sends $ 200 million to Nepal every year.
TPS Update : Jajarkot earthquake
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