Possible Duplicate:
How do I split a string with any whitespace chars as delimiters?
<div class="listPrice" style="font-size: 12px; padding: 10px 0 0 0;"> HSN Price: $9.95 </div>
Hi i am trying to split this with its' spaces but " " is making some problem for me. I am writing code at java with using jsoup. I send element.text().split(" ");
but this or element.text().split(" ");
cant execute at " "
Cn you help me about this situation?