[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 4144 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 365 days
Recommended Popular Threads Controvertial Threads
श्राद्द
TPS Re-registration
सेक्सी कविता - पार्ट २
What are your first memories of when Nepal Television Began?
पाप न साप घोप्टो पारि थाप !!
पुलिसनी संग - आज शनिवार - अन्तिम भाग
निगुरो थाहा छ ??
ChatSansar.com Naya Nepal Chat
TPS Re-registration case still pending ..
Lets play Antakshari...........
What Happened to Dual Citizenship Bill
Basnet or Basnyat ??
Sajha has turned into MAGATs nest
NRN card pros and cons?
is Rato Bangala school cheating?
मेरो अम्रिका यात्रा -२
Do nepalese really need TPS?
कता जादै छ नेपाली समाज ??
susta manasthiti lai ke bhanchan english ma?
कृष्ण नै अन्तिम सत्य
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.
Harvard Nepali Students Association Blame Israel for hamas terrorist attacks
TPS Update : Jajarkot earthquake
is Rato Bangala school cheating?
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