0
votes
2answers
42 views
Get Character value from KeyCode in Javascript…then trim.
This is what i have now:
$("input").bind("keydown",function(e){
var value = this.value + String.fromCharCode(e.keyCode);
}
If the e.keyCode may not be an ASCII character (a …
3
votes
3answers
96 views
Why does stdout decoding fail when adding carriage return?
The following java code does exactly what is expected:
1 String s = "♪♬♪♪♬♪♪♬♪♪♬♪♪♬♪♪♬♪";
2 for(int i=0; i < s.length(); i++)
3 {
4 System.out.print(s.su …
0
votes
1answer
79 views
C# multiple replace works slow, any faster idea ?
return mystring.replace(/&/g, "&").replace(/>/g, ">")
.replace(/</g, "<").replace(/"/g, """);
The above is my code, and I guess s …
7
votes
5answers
166 views
Accents on numbers in HTML (like a ^ over 1)
I'm trying to find the best way to put circumflex accents ( ˆ = ˆ) on top of numbers (a musical notation) without resorting to images. Certain letters have equivalent …
0
votes
3answers
2k views
need to handle special character validation using javascript
Special characters <,>,%,'',"",$,^ are not allowed in a textbox. I need to put a validation check to restrict these characters on submit along with the null check.
I wrote ent …
0
votes
3answers
39 views
java regular expression , how to add ‘[’ to expression
Hi
I want to creat a regular expression for strings which uses special characters '[' and ']'.
Value is "[action]".
Expression I am using is "[\\[[\\x00-\\x7F]+\\]]".
I tried d …
1
vote
6answers
118 views
MySQL :: Connector/Net euro sign
My MySQL database can store the euro symbol just fine (as I have tested with a native MySQL client (HeidiSQL)). But with the MySQL .NET connector my ASP.NET application is using I …
1
vote
9answers
2k views
Special characters in PHP / MySQL
Hi, I have in the database words that include special character (in Spanish mostly, like tildes).
In the database everything is saved and shown correctly with PHPmyAdmin, but when …
1
vote
1answer
26 views
\textnumero and font encoding
Hello *,
I currently use the \textnumero sign in my LaTeX document. Therefore, I need to include the 'textcomp' package. When doing so I get a compiler error stating:
! Packag …
1
vote
3answers
54 views
PHP dealing with files
im' trying to make a file based article system and i want the folders to be my categories and files inside it to be the actual articles. But sometimes i need some special character …
2
votes
7answers
116 views
Coldfusion - XML formatting a string returned from API call
We call an API that returns a string of XML-formatted data. We'd like to convert this string into a ColdFusion XML object, via XMLParse(). A problem occurs when special characters …
5
votes
4answers
219 views
What does ^L in (Emacs Lisp) source code mean?
Several times I see ^L in (mostly Emacs Lisp) source codes that looks like are separators of larger logical groups. Is it their real purpose? And if so, how can I use them? Is ther …
0
votes
4answers
154 views
how to replace special characters using regular expresions?
Hi,
How to replace special characters using regular expressions?
By special, what I mean is those symbolic characters that appear sometimes in text.
For example, in text below, I …
1
vote
0answers
22 views
Foreign language characters in iPhone SQLite
I'm creating an app for the iPhone that will hold Portuguese characters. When I query the database from within my app I get a null for the field that contains a special character.
…
2
votes
2answers
97 views
Count characters in P keeping non-latin characters
I have a script that counts the characters in each of my comments, excluding any Html Tags.
But it doesn't take into account that my comments contain åäöÅÄÖ (swedish letters).
So …
