[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 4135 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 30 days
Recommended Popular Threads Controvertial Threads
TPS Re-registration case still pending ..
nrn citizenship
अमेरिकामा बस्ने प्राय जस्तो नेपालीहरु सबै मध्यम बर्गीय अथवा माथि (higher than middle class)
Travelling to Nepal - TPS AP- PASSPORT
ढ्याउ गर्दा दसैँको खसी गनाउच
मन भित्र को पत्रै पत्र!
Morning dharahara
Guess how many vaccines a one year old baby is given
जाडो, बा र म……
Susta Susta Degree Maile REMIXED version
Elderly parents travelling to US (any suggestions besides Special Assistance)?
कल्लाई मुर्ख भन्या ?
1974 AD Pinjadako Suga Remixed
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