You are on page 1of 2

2/14/14

Java remove multiple spaces in a string sample code examples - Java Sample Programs

JAVA EXAMPLE PROGRAMS


0

Home Fundamentals Constructors Exception Handling Threads String Functions Generics Collections & Util Package Nested Classes Networking File I/O Operations Java Annotations JDBC Examples Java Interview Questions Java Interview Programs JUnit Search Algorithms Sorting Algorithms Data Structures JBoss Configurations

How to remove multiple spaces in a string in Java?


Description: Below example shows how to remove multiple spaces from the given string.

Code: 1 2 3 4 5 6 7 8 9 1 0 1 1 1 2 1 3 1 4 1 5 p a c k a g ec o m . m y j a v a . s t r i n g ; i m p o r tj a v a . u t i l . S t r i n g T o k e n i z e r ; p u b l i cc l a s sM y S t r R e m o v e M u l t S p a c e s{ p u b l i cs t a t i cv o i dm a i n ( S t r i n ga [ ] ) { S t r i n gs t r=" S t r i n g W i t hM u l t i p l e S p a c e s " ; S t r i n g T o k e n i z e rs t=n e wS t r i n g T o k e n i z e r ( s t r ,"" ) ; S t r i n g B u f f e rs b=n e wS t r i n g B u f f e r ( ) ; w h i l e ( s t . h a s M o r e E l e m e n t s ( ) ) { s b . a p p e n d ( s t . n e x t E l e m e n t ( ) ) . a p p e n d ( "" ) ; } S y s t e m . o u t . p r i n t l n ( s b . t o S t r i n g ( ) . t r i m ( ) ) ; } }


?

Knowledge Center What is System.out in Java

Example Output
String With Multiple Spaces

In System.out, out is an instance o PrintStream. It is a static member System class. This is called standa stream, connected to console.

Other String Function Examples


String Initialization example Copying charactor array to string example String concatination example String compare example Comparing StringBuffer with a String example Getting byte array from a string example String indexOf() example String lastIndexOf() example String startsWith() example String endsWith() example String split function example Extract char array from string example Replace characters in a string example Changing string case example Trim spaces in string example How to format a string? How to match a string with regular expression? How to remove non-ascii characters from a string? How to remove html tags from a string? How to get line count from a string?
Find us on Facebook

Java Sample Programs


Like 1,608 people like Java Sample Programs

Facebook social plugin

Few Random Java Examples

What is generics wildcard argumen example. Write a program to find maximum words from a file.

Find out duplicate number between numbers.

Can you serialize static fields of a c

Placement Java Interview Question

How to convert byte array to inputs

How to get subset from sorted set?

www.java2novice.com/java_string_examples/remove-multiple-spaces/

How implement bounded types (imp

1/2

2/14/14

Java remove multiple spaces in a string sample code examples - Java Sample Programs
How to zip a single file?

How implement bounded types (imp interface) with generics?

About Author
My name is Nataraja Gootooru, programmer by profession and passionate about technologies. All examples given here are as simple as possible to help beginners. The source code is compiled and tested in my dev environment. If you come across any mistakes or bugs, please email me at java2novice@gmail.com or you can comment on the page.

Most Visited Pages


Freshers Java Interview Questions How to Create Java Custom Exception How to convert byte array to inputstream? Java StringTokenizer With Multiple De-limiters Sample Code Java Constructor Chaining Examples Write a program to find out duplicate characters in a string.

Other Interesting Sites


Techie Park Wikipedia query2nataraj.blogspot.in

Write a program to find maximum repeated words from a file. How to read file content using byte array?

Reference: Java Platform Standard Ed. 6 - API Specification | Java is registered trademark of Oracle. Privacy Policy | Copyright 2013 by Nataraja Gootooru. All Rights Reserved.

www.java2novice.com/java_string_examples/remove-multiple-spaces/

2/2

You might also like