|
|
| How do i replace all character 'ы' with 'u' in a String? Str.replace('ы', 'u'); Does nothing.. |
| Does nothingпјџ Paste your code |
| HS^, You cannot change a String. |
| Str = str.replace |
| String s = myString.replaceAll('ы', 'u'); |
| I dont understand this: Java.io.IOException: Server returned HTTP response code: 400 for URL: The url looks fine to me:s |
| Maybe the space characters need to be escaped |
| But other urls that looks the same work.. like for example: Hmm i see the problem |
| HS^, Space, the final frontier. |
| How do i escape a space? |
| %20 |
| In the browser it puts %20 or something I just replace spaces with %20 |