trim leading whitespace code example
Example 1: remove spaces in wc output'
awk '{$1=$1;print}'
Example 2: how to strip trailing spaces in java
String str = new String(" apples ");
str.trim(); // result is a nes string "apple"
awk '{$1=$1;print}'
String str = new String(" apples ");
str.trim(); // result is a nes string "apple"