English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

How can i remove the whitespace between characters in an array. Example I want[A B C D] to be [ABCD]

2007-01-09 07:42:34 · 4 answers · asked by Anonymous in Computers & Internet Programming & Design

4 answers

well what coding system would help..
since im sure the people who answer this are going to wait for that info

2007-01-09 07:45:54 · answer #1 · answered by Paultech 7 · 0 0

If you are asking about programming issues, then I can't help you. However, most page layout and good word processing applications have very good controls for doing exactly this function.

"Leading" controls the space between lines. "Tracking" adjust the spaces between characters.

The controls should have a symbol with arrows, pointing in or out, and arrows, pointing up and down.

2007-01-09 07:50:04 · answer #2 · answered by Vince M 7 · 0 0

many times giving top in proportion does not artwork in html. If mandatory you would be able to offer fastened top in px, and supply a scroll-bar if content fabric overlaps top. And with regard to the historic past-colour for important div, you will desire to clean the floats. So after your 0.33 div in important div, supply -

/div wish it solves the priority

2016-10-30 11:05:10 · answer #3 · answered by ? 4 · 0 0

orig_array [ A B C D ]
result_arr [_MAX_]
j = 0
for (i = 0; i < strlen(orig_arr) ; i ++) {
if (!isspace(orig_arr[i])) {
result_arr[j] = orig_arr[i]
j++;
}
result_arr will be [ABCD]
}

2007-01-09 09:35:34 · answer #4 · answered by KACH 2 · 0 0

fedest.com, questions and answers