1
vote
3answers
57 views
Replace all Special Characters in a string IN C#
Hi,
I would like to find all special characters in a string and replace with a Hyphen (-)
I am using the below code
string content = "foo,bar,(regular expression replace) 123"; …
1
vote
7answers
99 views
Question mark in JavaScript
I came across the following line in a JS function (it was an RGB to HSB color converter, if you must know)
hsb.s = max != 0 ? 255 * delta / max : 0;
I'm wondering if someone can …
0
votes
2answers
33 views
Is there a name / set for characters that can be typed using a standard english keyboard?
Is there a name / set for characters that can be typed using a standard english keyboard?
0
votes
0answers
11 views
loading data from a flat file to table using informatica, having both english and foreign language characters like chinese
I am loading data from a flat file to table using informatica, the file has both english and foreign language characters like chinese, and others. The foreign language characters a …
1
vote
4answers
95 views
Is there an easy way to get characters from the keyboard without hitting enter in Java?
I'd like to know if there is an easy way to get character input from a JTextField in Java as they happen, not after an enter keystroke.
In my case I want the characters (text) to …
0
votes
4answers
71 views
Which command in VBA can count the number of characters in a string variable?
Let's say I have this variable:
word = "habit"
which command in VBA will allow me to count how many characters are there in this variable (in my case it's 5).
Important: the va …
1
vote
1answer
42 views
CKEditor: Strange Characters after ajax submit
I am using ajax to gather the CKEditor content and submit it to the server. Once I look at it after it is submitted, all the html tags < and > have been converted to their html …
2
votes
3answers
55 views
Remove Characters from EOF while Writing to File in Matlab
In Matlab, after creating a certain number of lines and printing them to a file, I have the need to delete a line and rewrite the rest of the data to that same file. When I do so, …
1
vote
3answers
105 views
Python: Removing characters from beginnings of sequences in fasta format
Hi,
I have sequences in fasta format that contains primers of 17 bp at the beginning of the sequences. And the primers sometimes have mismatches. I therefore want to remove the fi …
0
votes
1answer
24 views
WCF REST Special characters
HI
How do u pass a '/' as a paramter in a wcf service rest way.
e.g if the user name has the domain includes "domain/userName"
thanks
0
votes
0answers
32 views
CKeditor character/word count
I need to display character count and word count with the new CKeditor.
I tried to search for a plugin but there are none, except few hacks for the old fckeditor.
1
vote
2answers
42 views
Can non-latin characters be used in XML tags?
Is this legal?
<?xml version="1.0" encoding="UTF-8"?>
<Glāžšķūņa Rūķīši="7">
</Glāžšķūņa>
I know I can use all kinds of characters in the content and attribute …
0
votes
1answer
20 views
SQLite and Portuguese-br characters
I'm developing an app that requires the storage of Portuguese characters. I was wondering if I need to do any configuration to prepare my SQLite db to store those considered specia …
0
votes
2answers
76 views
Can I select distinct/group by characters in a field in SQL?
I'd like to run a query which for a given field will count the instances of a particular character.
For example if I had a table called 'Friends' with a 'Names' field containing r …
2
votes
5answers
173 views
file_exists() for a file that contains (&) in filename
$filename = "Sara & I.mp3";
if (file_exists($filename)) {
...
}
If the filename has a "&" PHP does not return true for file_exists
How can I escape "&" in the $file …
