I have the following text
"This ball isn?t yours, this one is John?s"
i want to correct this to be
"This ball isn't yours, this one is John's"
How can i do this in java using Pattern and Matcher?
Thanks
|
I have the following text "This ball isn?t yours, this one is John?s" i want to correct this to be "This ball isn't yours, this one is John's" How can i do this in java using Pattern and Matcher? Thanks |
|||
|
|
||||
|
In this case you could use:
Then you'll be much less likely to replace legitimate question marks, as @glowcoder mentioned. However, I think @Philipp is right, and this is really a character-encoding issue. It looks like your text was supposed to be:
If it was encoded as cp-1252 but decoded as ASCII, the curly single-quotes would be replaced with question marks. If that's the case, you're likely to find other characters, like curly double-quotes ( |
|||
|
|
Is this John?s ball?from turning intoIs this John's ball'– corsiKa Sep 22 '11 at 20:36