Tagged Questions
0
votes
0answers
18 views
parsing special characters in php mailing script
I wrote a simple php script to send emails from my server for a contact form.
I am seeing responses with special characters such as quotation marks coming out as " and such in the emails.
It ...
0
votes
1answer
64 views
How deal with special characters in GET request for a password field?
I'm working in a web app that authenticates through a get request (and I have no other option), the method already works, except for users whose password contains special characters, for example there ...
1
vote
1answer
47 views
Python - Unable to rename a file with special characters in the file name
I have a bunch of mp3 files that somehow have a special character in the 0th index. So the file name looks like this - ▶ Alone Tonight - Radio Edit - Above & Beyond .mp3
I want to be able to fix ...
-1
votes
0answers
8 views
Remove strange characters from script
I need to replace a special character from a a text file but I don't know what it is.
The character is Ã, it actually looks like a pipe with a right facing serif, I don't know if it's ALT 195 but I ...
1
vote
2answers
66 views
How to escape a special character in Hive shell/JDBC statement?
I'm trying to create an external table from a JSON file, which looks like this:
{"id": "0010001", "my$entities": [{"a": "foo", "b": "bar"}]}
this is a file on HDFS and I don't have control on it.
...
0
votes
0answers
39 views
code regarding keyPress( ) method and keycode for virtual keyboard in java for special characters
I have to create a virtual keyboard in java to type frequently some special characters like:Ã Ð Ğ Ș Ģ Ŗ etc. As they are not present in our regular English keyboards, the virtual keyboard is must for ...
0
votes
0answers
32 views
How to escape special characters in scp
I want to be able to escape any worst case scenario file path in scp. I can't find a way to escape a file with an exclamation point and a " character at the same time.
Back story:
I have a webpage ...
0
votes
1answer
116 views
PHP Replace special characters with corresponding ascii code
I'm looking for a function that converts all special characters in their corresponding ascii code!
I'll exlpain!
I have this code:
<trust:RequestSecurityTokenResponseCollection ...
-1
votes
2answers
97 views
How to remove special characters from string using batch
I have very little knowledge in batch programming. I want to remove special characters from string Suppose If String= " How:to,convert special characters" wants to convert into this " ...
0
votes
1answer
67 views
SimpleXMLElement, How to Avoid Entity Errors? (Entity 'Acirc' not defined in …)
How can I avoid as many entity conflicts as possible in an environment where the XML doc is containing blog-post type content?
Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: ...
-1
votes
2answers
46 views
c# encoding string to unknown format
I know a website that converts special characters but I don't know what is encoded format.
example :
When I search uğur in website, it converts to ug21ur in URL.
Is it an encoding format or? How can ...
0
votes
0answers
50 views
How to post special character
I want to post this content to database:
sprintf('%08d',1);
sprintf('%02d',1);
But when i submit form, i got this result:
sprintf('d',1);
sprintf('d',1);
It's wrong, i don't know why and how ...
-1
votes
1answer
63 views
Flex how to input Special Characters in itemrenderer [closed]
I inputted !@#$%^&*() in TextInput
but DB data is !@#$%
why?
<mx:AdvancedDataGridColumn width="200" textAlign="center">
<mx:itemRenderer>
<mx:Component>
...
0
votes
0answers
58 views
getting special characters while writing an xml
I was trying to write some contents extracted from one tool and by using those information, I used to write it on xml file using XML Writer method.where when i get a new line character,some special ...
0
votes
1answer
34 views
Special characters doesnt work when load a page into div by ajax
I'm trying to change my static php page to ajax. I don't have much information about it to be honest.
My problem is: When I load content into a div, my old php version works fine but when i use the ...
3
votes
1answer
85 views
Node.js - Express special characters in routes (/campañas)
I have a problem trying to set a route in Node JS with Express framework.
My route is this one:
app.get('/campaña/nueva', sms.nueva);
But i cant get it to work, because of the evil "Ñ" (it works ...
0
votes
1answer
41 views
Comparing chars with spanish characters
I have a input with any character and i need to have a array that separates the words in the input. The array needs to have just the letters (is in spanish, so it includes accented letters). My code ...
0
votes
1answer
94 views
Kendo Grid Specials Characters
I'm using a Kendo Grid to read JSON datas.
"contentType: "application/json; charset=utf-8"," is indicated but the specials characters as 'é', 'à', etc ... aren't encoded and appear like "%Ã" or ...
1
vote
2answers
92 views
Replace + sign from the URL using htaccess
I want to change the URL of my website using .htaccess file :
http://godofindia.com/Guru+Saint+Mahatma-103/
to
http://godofindia.com/Guru-Saint-Mahatma-103/
I only want the + sign to ...
0
votes
3answers
147 views
Set text with special characters
I need to display special characters in TextBlock from string in code.
<TextBlock x:Name="tboxData" TextWrapping="Wrap" Text=">> <<" />
is working, but I need to ...
4
votes
2answers
164 views
PHP Remove Punctuation (No Dashes)
I found the below script here on stackoverflow and it replaces special characters with dashes for the purpose of clean url building. But, it doesnt do it well as it replaces punctuation with dashes as ...
0
votes
1answer
105 views
special characters in HTML problems
Although I included the ISO-8859-1 content-type META, my website isn't displaying special characters, such as ã and ê. If I 'echo' a string from a MYSQL query, the special character is displaying ...
1
vote
1answer
73 views
use of ? (special character) in servername of httpd-vhost.conf
i have created a new virtual host which is as under:
<VirtualHost http://developer.com/TimeService/V1/gettime:80>
ServerName http://developer.com/TimeService/V1/gettime
DocumentRoot ...
1
vote
1answer
89 views
Replace special character with an escape preceded special character when String, replaceAll fails
In my java code I want something like if a string input has got any of the special characters mentioned, that should get preceded by a \.
Special character set is{+, -, &&, ||, !, (, ), {, ...
1
vote
2answers
390 views
Python 3.3: printing special symbols like ♥ and ❦ when running through command line
I've found quite a bit of special symbols like ♥ and ❦ that I want to use for a program with Python 3.3, and the programs work just fine in IDLE, but when I run it using the command line it ...
1
vote
0answers
80 views
How can I store characters like 【Ƹ̴Ӂ̴Ʒ into a MySQL database?
I don't know a lot about character sets like UTF-8, etc. etc. so I'm getting lost in the terminology from other posts.
I've been using a VARCHAR that is on the default collation in phpMyAdmin ...
3
votes
2answers
120 views
List of all html entity chars mapping
where can I find mega list of all html entity characters?
http://www.w3schools.com does not cover all.
E.g. &# 145; &# 146; &# 147; &# 148; (values of these entities: ' & ")
are ...
0
votes
2answers
133 views
Special Characters in JS, how to use “/” character
I've vbulletin 4.2.0 i added an special button to it's editor with this article;
http://www.vbulletinguru.com/2012/add-a-new-toolbar-button-to-ckeditor-tutorial/
The thing i want to do is add an ...
1
vote
0answers
56 views
Places API returns REQUEST_DENIED for some special characters
We are using the Google places API in our application... it searches
for the address correctly.
But when the address contains some special characters, e.g. "#101"
etc, it fails with a REQUEST_DENIED ...
0
votes
1answer
152 views
“Strange” characters when saving to PDF
I have this pdf file:
SA Pias - Margaça Branco.pdf
I use this to access it:
href="SA Pias - Marga%E7a Branco.pdf"
It opens OK in the browser, but when the user is going to save it, those "strange" ...
1
vote
1answer
154 views
Ignore special characters when a user submits a Magento search?
Is there a way that anyone is aware of to ignore special characters when a Magento (1.5.1.0) search is submitted?
For example: If someone submits #955 as a product search, it returns zero results, ...
3
votes
4answers
278 views
secured password with regular expression
I am very new to regular expression, I did a research and got a little understanding
what I need is a password that matches those specifications
any alphabetic character (at least one)
any numeric ...
0
votes
0answers
218 views
How to remove special characters from Primefaces URL which gets included in HTML
Our application is going behind Single Sign On. Our application is using JSF implementation with PrimeFaces. After we integrated our application behind SSO, we saw few issues. The SSO prevented some ...
0
votes
0answers
175 views
Inline validation for special characters onchange() jQuery-Validation-Engine
I am using jQuery inline validation (https://github.com/posabsolute/jQuery-Validation-Engine) and it's awesome. I would like to have it validate after each character (onchange) for special ...
3
votes
4answers
253 views
beginner java, showing special characters that correlate to an integer
Doing some homework in my CSC 2310 class and I can't figure out this one problem... it reads:
Write a program that will draw a right triangle of 100 lines in the
following shape: The first ...
0
votes
2answers
92 views
Windows Folders with Special Character, how to handle them on a loop
I have this shared folder,
\\FILE48\BUGB-MONTR‚AL_RŠGLEMENTS_GESTIONNAIRES
After activating chcp 1252
\\FILE48\BUGB-MONTRéAL_RèGLEMENTS_GESTIONNAIRES
I want to create a script which should be ...
0
votes
2answers
100 views
How can I sort a ListView alphabeticly BUT with special characters at the bottom?
I want a Listview in alphabetical order, but with the special characters at the bottom of the list.
So it would look something like this:
List item
Aaa
Bbb
Ccc
Ddd
Etcetera
'''''
((((
$$$$
0
votes
1answer
191 views
GNU sed for windows handling special characters
I am running the GNU sed 4.2.1 implementation for Windows but no experience with sed.
I have an xml file with line in this format:
<field level="document" name="Title" value="Pericles" />
...
-1
votes
3answers
614 views
Replace special characters with space in search box
i have a search box in php file, like this
<form action="/">
<input type="text" name="q">
<input class="submit" type="submit" value="Search" />
</form>
but the search gets ...
0
votes
1answer
453 views
avoid to type some special characters
I have a textbox for proving username. But I want to restrict special characters over their when they are trying to type or trying to paste words(along with special characters). How can I do that by ...
0
votes
0answers
152 views
special characters appearing as � on my HTML
The special characters like ", -, > etc are being rendered on the HTML page as �. I see that this represents bad UTF-8 characters. Is there a way i can render it correctly by decoding in perl, or may ...
0
votes
2answers
112 views
Double \\ appears while reading from internet
I'm reading some information from an external server where I have no access and I don't know the encoding and I've having some problems with characters like í. What I do is a POST request using the ...
0
votes
3answers
117 views
special characters with sed
I'm trying to cut the URL out of a web link
Say for example, I want take http://site.com/path/to/site.html to just print out 'site.com' or 'http://site.com'
This is the closest I can figure out but ...
0
votes
3answers
559 views
Insert special character XML to SQL
I'm trying to update a column of type XML.
Text to be inserted in the XML fields: "& Decision ↨‼ Agreement"
Text converted to XML: <?xml version="1.0" encoding="utf-16"?><Informations ...
0
votes
2answers
119 views
Symfony2 : How create annotation route contain special characters
In my Controller I need to create annotation route and it must be the same of this :
/getservice?from=2012-06-01&to=2012-06-25
I have tried this but it's not working
/**
* ...
0
votes
0answers
68 views
Math symbols in caption of a table [closed]
I'm using the following code for the caption of a table:
\begin{table}[h]
\begin{tabular}{ l c c c c c}
\hline
Response mode/Distractor type&M&PE& \begin{math} \mu \end{math} & ...
0
votes
1answer
232 views
MongoDb munging HTML entities like “®” into “&reg;” on save() from PHP
On MongoDb 2.0.6, running on 64 bit, with PHP 5.4 with the official driver. MongoDb save() of
®
is stored as
&reg;
Mongo apparently munges all & into & amp; thus ...
1
vote
3answers
272 views
Special characters in Lua variable
I'm using Lua and I want to use a so called "native variable" that will be read-only and they will be recognized with a "$" mark in front of them e.g. $variable. But in what I've found Lua only ...
3
votes
1answer
506 views
Oracle Table column name having special( Danish) characters. Unable to execute sql query
I am using DbDataReader to execute query. Please find the code below
Query is:
select BRANCH_NAME, AMOUNT, ACCOUØNT_ID from ACCOUNT
Error is:
ORA-00904: "ACCOU?NT_ID": invalid identifier .
...
1
vote
1answer
121 views
Special characters in SharpPDF
I'm using sharpPDF dll (http://sharppdf.sourceforge.net) to create PDF's in C#. Everything works great but I don't get any special characters (actually these are Polish letters such as "ą, ć, ł, ...


