Good morning,
I'm trying to remove a space with java. The value I get through scraping, for example the value 11 990,00
.
I've tried with:
.replace(" ", "")
.replace("\S", "")
.replace(" ", "z").replace("z", "")
This has already been to test if I was not capturing the space well.
Well, there's no way ... I enter that value later in a database, and when I collect that data with PHP, I get the following value: 11�990.00
.
I also tried to remove it with PHP but without results using the following code:
sub_str(" ", "",$posts[0]["$pais"])
But he still does not take away the space. I do not know what I'm doing wrong. The example I'm showing is the price taken from this link .