Tagged Questions
0
votes
0answers
86 views
How to convert escaped http request data to a normal string
I am using .net 3.5 to write a simple REST web service. This will use JSON to pass data to and from it. I have a simple test HTML page I am using to send POST data to the service. When I receive the ...
0
votes
1answer
40 views
How to convert into cyrillic
Good day.
I got string like this from server
\u041a\u0438\u0441\u0435\u043b\u0435\u0432 \u0410\u043d\u0434\u0440\u0435\u0439
I need to convert it into cyrillic cp-1251 string.
How do i do it? ...
0
votes
0answers
42 views
Encode message string from a dictionary file
Totally not working, I have been trying to encode and decode from dictionaries(two separate dictionaries and code)in python, I am very green to coding and need help please.
I have a short string that ...
-1
votes
0answers
46 views
Writing a base64-encoded file in Java [duplicate]
I have a problem to write a file encoded in base64.
I have the contents of a xml files stored in a field of a table in a database. Some of them are stored in base64, not all.
What I need is to write ...
-2
votes
1answer
64 views
How to decode this string to utf-8 string? [closed]
I have this code:
string URL = "http://translate.google.com/m?hl=vi&sl=en&tl=vi&ie=UTF-8&prev=_m&q=song";
string s = "";
WebClient client = new WebClient();
...
4
votes
5answers
187 views
What the heck is a Perl string anyway?
I can't find a basic description of how string data is stored in Perl! Its like all the documentation is assuming I already know this for some reason. I know about encode(), decode(), and I know I can ...
1
vote
1answer
58 views
Decode zero-terminated UTF-8 string from any position in a byte array
I am looking for a method in the FCL similar to Encoding.UTF8.GetString(bytes, index, count), but one that does not require a count argument and instead assumes that the string at the given index is ...
-4
votes
3answers
105 views
How to encode a String to Byte[]
I have a string that contains hex numbers
But i want to decode them to text and convert them to a string
If my the string is "FF505000010000000A00015634"
They are in hex, how do i make them to \xFF ...
3
votes
3answers
379 views
How to avoid encoding null (\u0000) when reading from InputStream
I am reading a request body and put it into an input stream. While I am explicitly saying the decode method, I still get many \u0000 (Null) after the string.
InputStream is = ...
1
vote
1answer
104 views
T-SQL How to unescape or decode string?
I have a string that is record in the database in encode format (encoded with Javascript) and I need to decode it. The "tabs" and the "new line" characters are escaped with symbols like '%09' or ...
0
votes
0answers
44 views
Decoding Norwegian Chars in PHP
i want to know about how to decode Norwegian characters in PHP, i have used rawurldecode() but it returns wrong, the string is as follow :
%C3%98yvind
It should be decoded as
Øyvind
But i ...
1
vote
1answer
286 views
How to convert a String with umlauts back to JSON
I have this JSON Python String:
linklist = str('
{
"Download":{
"Test": "http://www.test.org",
u"K\xf6ter": "http://www.koeter.de"}
}'
)
I want to use:
myJson= json.loads(linklist)
But ...
4
votes
3answers
258 views
string.decode() vs. unicode(string)
myString = 'éíěřáé'
I need to decode this string to unicode.
Is there any difference between folowing usages and between these two methods in general?
myString.decode(encoding='UTF-8', ...
2
votes
5answers
528 views
I don't understand encode and decode in Python (2.7.3)
I tried to understand by myself encode and decode in Python but nothing is really clear for me.
str.encode([encoding,[errors]])
str.decode([encoding,[errors]])
First, I don't understand the need ...
2
votes
2answers
210 views
decoding bytes from urllib using python3, is there a better way?
I was recently re-writing some code to python3 and in search for a clean pythonic solution to decode bytes returned by urllib.request.urlopen to be passed to csv.reader
I came up with the following:
...
0
votes
1answer
221 views
Decode a string with unknown encode method received from web-browser
inside a webapplication i am processing requests to a url like
http://example.com/<website-base-url>
im am logging the raw GET parameter of the request in an uft8 database column and in ...
-3
votes
1answer
315 views
String decoding using UTF-8 [closed]
I have a string in the database that was encoded in the .Net application using RSA. After further converting it into the hexadecimal string the final string in database look as follows:
...
1
vote
2answers
338 views
Double quotes(“xxx”) changes to two double quotes (“”xxx“”) unexpectedly while read string from file using Python
Here is a problem that has been bothering me a lot about Python, I could really use some help on this:
I'm trying to read some string from a file. The files are .rc suffix where one kind of localized ...
-1
votes
2answers
271 views
How do I decode the following string in PHP?
Does anyone know how to properly decode the following string in PHP?
=?iso-8859-1?Q?OLG=20Slots=20at=20Windsor=20=26=20Caesars=20Windsor=20w?=
I tried using
quoted_printable_decode()
but did ...
0
votes
0answers
258 views
Simple PHP decoder [closed]
I newbie in PHP world, so I need some help : )
Let's say we have the following string:
o.6.m.i.m.s.x.2.q.w.s.c.1.r.8.5.
This needs to be decoded using the some rule:
Note: dots (.) doesn't count.
...
2
votes
1answer
1k views
Using decode() vs. regex to unescape this string
I have the following string and I'm trying to figure out the best practice for unescaping it.
The solution has to be somewhat flexible in that I'm receiving this input from an API and I can't be ...
0
votes
3answers
191 views
Splitting JSON data in iPhone
I got this data from my server using JSON:
{
ID = 198;
dtDate = "2012-03-14 00:00:00";
dtTime = "06:00:00";
iPublished = 1;
sProgram = "Devotional Hits";
}
{
ID = 199;
...
0
votes
2answers
75 views
What would be the correct function to decode this string?
Good evening everybody!
I'm stuck at writing my own email program in php for fun. I try to download all attachments from my email-address but some files have names like
...
0
votes
0answers
469 views
How do I decode an ASP.NET ViewState string using PHP? [closed]
I'm trying to decode the string, but haven't any results. Could anyone help me?
...
3
votes
4answers
2k views
ruby base64 encode / decode / unpack('m') troubles
Having a strange ruby encoding encounter:
ruby-1.9.2-p180 :618 > s = "a8dnsjg8aiw8jq".ljust(16,'=')
=> "a8dnsjg8aiw8jq=="
ruby-1.9.2-p180 :619 > s.size
=> 16
ruby-1.9.2-p180 :620 ...
2
votes
2answers
1k views
WordPress custom post meta JSON string won't decode with json_decode()
I have a problem regarding a JSON string grabbed from WordPress custom post meta.
1) I grab the custom post meta and save it as $json1.
$json1 = get_post_meta(get_the_ID(), 'netr_locations_json', ...
2
votes
2answers
429 views
Decode this type of string in python
=?UTF-8?B?TmV3IFBlcnNvbmFsIE1lc3NhZ2U6IE1vbmcgYW5oIHTDrG0gbOG6oWkgY2h1eWVudGIub3JnIQ==?=
Hi, I have this string which is what returned from an IMAP command - do anyone know how to decode this in ...
1
vote
3answers
660 views
JavaScript multiline string decode
I have a string:
<Grid><Description>LINE 1
LINE 2
LINE 3
LINE 4
</Description><</Grid>
I need it to be decoded with line breaks. I ...
0
votes
2answers
2k views
How to convert the following text into a proper string in C#?
How to convert the following text into a proper string in C#?
<IconStyle ...
0
votes
1answer
192 views
How to decode a string like “string\x27s” in c#?
I have a c# app that sometimes has to work with strings like:
"example\x27s string"
How do I decode that? I know 27 is the ascii code for a single quote ', but UrlDecode() wont work on that string.
...
0
votes
1answer
1k views
Verifying a SHA1 Digest from a text string!
I'm having a problem verifying a SHA1 digest in base64 of a text string.
I have this text string in a file (test1):
2008-03-10;2008-03-10T15:58:00;FT 1/1;28.07;
And I used the follow command to ...
-1
votes
2answers
261 views
C# and character decoding
I have a string \u0025A3\u0025A3... e.t.c. So how can I decode that to normal view in C#.
I mean sequence \u0025A3\u0025A3 should looks in decoded mode. For example, the \u0025A3\u0025A3 sequence ...
2
votes
1answer
135 views
Decoding legacy binary format
I am trying to figure out how to decode a "legacy" binary file that is coming from a Windows application (anno ±1990). Specifically I have a trouble to understand what specific encoding is used for ...
7
votes
5answers
4k views
Is there a faster way to decode html characters to a string than Html.fromHtml()?
I am using Html.fromHtml(STRING).toString() to convert a string that may or may not have html and/or html entities in it, to a plain text string.
This is pretty slow, I think my last calculation was ...
0
votes
4answers
3k views
flash as3 string encode decode
I want to encode/decode a string in AS3:
var string:String = "This is an text";
encode(string) will give for example: yuioUasUenUwdfr.
decode(encoded(string)) will give: This is an text.
It does not ...
2
votes
5answers
4k views
PHP: Very simple Encode/Decode string
Is there any PHP function that encodes a string to a int value, which later I can decode it back to a string without any key?
0
votes
2answers
273 views
Python String with HTML /
I'm trying a simple program to send some html down a socket to a client. 2 things are goofing me up.
The code:
c.send( str.encode("<HTML><BODY>Test Page<///BODY><///HTML>") )
...
0
votes
2answers
505 views
How to decode a string on runtime in java?
I'm creating email client, when i receive emails from blackberry server it sends file name as "=?utf-8?B?anBlZ2F0dGFjaG1lbnQuSlBFRw==?=" but the original filename was "jpegattachment.JPEG", and ...
6
votes
3answers
5k views
Decoding double encoded utf8 in Python
I've got a problem with strings that I get from one of my clients over xmlrpc. He sends me utf8 strings that are encoded twice :( so when I get them in python I have an unicode object that has to be ...


