Questions tagged [string-decoding]
96 questions
0
votes
1 answer
How to change a Python 3 string into 'readable' text
I have this string in var1
var1 =…

R. Yora
- 31
- 9
0
votes
2 answers
Decoding arabic string
Is there a tool to help me convert/decode such a link https://www.yamsafer.me/%D9%85%D8%B5%D8%B1/%D8%A7%D9%84%D9%82%D8%A7%D9%87%D8%B1%D8%A9/%D9%81%D9%86%D8%A7%D8%AF%D9%82-%D8%B1%D8%AE%D9%8A%D8%B5%D8%A9
to its original arabic wording?

مجدي حبش
- 1
0
votes
1 answer
Trying to create a list of decoded NavigableStrings in Beautiful Soup
I want to make a list of NavigableStrings ready to export to excel with all strings decoded. This is necessary since I need all text to not have the "u" in front of it when being exported to excel.
This is what I've done so far: I ran the list…

Sal P.
- 39
- 9
0
votes
1 answer
Problems decoding using AES on C#
Hi Guys I have problem on decoding my text, When I want decode VS Debugger shows me "The input data is not a complete block."
I tried each way to fix this problem but i could not find :(
Could anybody help me?
Thanks.
//Encoding
try
…

Hamid Heydari
- 3
- 3
0
votes
1 answer
Not Able to Parse JSON Data in WebView
i am Newbie in iOS Development.i want to load only "description" Key Data in to UIWebView From my Url Here my Url like as
http://www.janvajevu.com/webservice/specific_post.php?post_id=2885
and i parsed Data For it like…

Ashish Gabani
- 445
- 1
- 5
- 30
0
votes
1 answer
recursive method for finding all decodings of a string of numbers
i am trying to find all possible decoding of a string of numbers, for example the following
Input: {1, 2, 1}
Output: ("aba", "au", "la")
[3 interpretations: aba(1,2,1), au(1,21), la(12,1)]
My program pints "aba" then gives me the following…

user3137376
- 1,527
- 2
- 19
- 29
0
votes
2 answers
Hash value does not match when decode a string
i have the following piece of code. It has been working in my Staging and pre-production environments as well as in production.
How it has suddenly stopped working ONLY in the Production environment. It still works in pre-production and…

StackTrace
- 9,190
- 36
- 114
- 202
0
votes
1 answer
getting accented chars from html with python
In a webpage source i can see a word like: abac%c3%a0 that the browser (chrome) shows as abacà.
Now, i have downloaded the page using urllib2 and i am parsing the page source with python (2.7 on mac os x) to get some keywords: i would like to have…

Alienpenguin
- 967
- 1
- 9
- 28
0
votes
2 answers
How to fix corrupted encoded words using PHP
In one of my database table I found some corrupted words like:
Noël, japón, Świata
Which I later found should be as:
Noël, japón, świata
Anyone know how to convert them back to normal using PHP

Buntu Linux
- 492
- 9
- 19
0
votes
2 answers
URL Decode (for Extended Ascii) using TSQL
I am needing some help fine tuning a T-SQL function to properly DECODE a string which contains URL. Just the query string parameter values are URLEcoded (and not the whole URL). The original function works well when decoding single byte characters…

Robert
- 724
- 1
- 11
- 25
0
votes
0 answers
How to Determine encoding/compression of the string which appears like characters are dancing in gangam style
While analyzing the HTTP Requests OF a website. I found that in one of the POST request it sends three postdata to the server the first one was SAML data first base64 encoded then urlencoded.
But I am not able to figure out the value of other two…

Ali Azhar
- 1,703
- 19
- 14
0
votes
2 answers
Decode Url with special & or + characters in query parameters value
I have met this difficulty while decoding a Base64 encoded URL with parameters
eg: http://www.example.com/Movements.aspx?fno=hello&vol=Bits & Pieces
My expected results should be:
fno = hello
vol = Bits & Pieces
#Encoding:
//JAVASCRIPT …

FunMatters
- 593
- 1
- 10
- 26
0
votes
2 answers
Decoding string to DateTime
I have DateTime in database as string for example: 6@11@2012@1@37
I have the decoding method like this:
public static DateTime DecodeTime(string time)
{
int day = Int32.Parse(time.Split('@')[0].Trim());
int month =…

Amrit Sharma
- 1,906
- 8
- 45
- 75
-1
votes
1 answer
Decoding HTML data in swift
I am implementing showing html data received from server in web view in swift ... I ma getting html data from server in following format (just part of data string)
I want to convert this to proper html format so that I can load it in webview…

user3500523
- 59
- 5
-1
votes
1 answer
How to decode "\/" in strings
I am parsing a source that frequently contains / encoded as \/. For example, https:// is encoded as https:\/\/.
What is the name of this encoding? It appreas to be used when sending json in HTML. It is a large document and / to \/ mapping probably…

Robert Segdewick
- 543
- 5
- 17