This is my string.. how can i remove the spaces using reg exp in java
08h03 Data1 Data2 Data3 Data4 5
Is there any way i already tried replace(" ","");
|
This is my string.. how can i remove the spaces using reg exp in java
Is there any way i already tried replace(" ",""); |
|||
|
You probably didn't reassign the string. Try:
Note that This will remove all spaces from your string, which is an odd requirement, if you ask me. Perhaps you want to split the input? This can be done like this:
or maybe even replace 2 or more spaces with a single one? This can be done like this:
|
||||
|
|
|
Use replaceAll() Method.
|
|||||||
|
"08h03Data1Data2Data3Data45". – Kobi Mar 16 '11 at 10:35