Refers to a symbol that represents a letter or number. Also, the bit pattern used to represent such a symbol.
0
votes
2answers
96 views
getting string between 2 characters in python
I need to get certain words out from a string in to a new format. For example, I call the function with the input:
text2function('$sin (x)$ is an function of x')
and I need to put them into a ...
0
votes
1answer
164 views
odd issue with funny characters in Joomla/ Jomsocial
I hope someone can help me with this issue.
For a few months (since last August) there has been an ongoing issue on my site with strange characters appearing all over the place - especially in user ...
0
votes
1answer
45 views
NYSIIS algorithm in Perl
I am trying to use the NYSIIS module in perl: http://search.cpan.org/~krburton/String-Nysiis-1.00/Nysiis.pm
I tried the sample program:
#!/usr/bin/perl
use 5.10.0;
use String::Nysiis qw(nysiis);
...
2
votes
3answers
88 views
Perl Script to Generate All Characters Including NonLetters: How do I transform a number into base 27?
I have written the following script that creates a string that is of length 3 or 4 units for all possible strings that contain the 26 letters of the alphabet. I'd like to add a 27th character. Call ...
0
votes
2answers
282 views
html entities not converting special characters
I'm using htmlentities which is converting characteres with accents, but it is not converting this type of quotes “. Instead the browser shows a weird symbol with a question mark �
How can I convert ...
0
votes
1answer
27 views
Character Output - PHP Includes
Here the problem - my html doc type heading is as follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html ...
1
vote
1answer
129 views
Looping for every character in variable string BATCH
I'm trying to loop through every character in a string . I only however know how to loop for every word in a string ussing the following:
(set /P MYTEXT=)<C:\MYTEXTFILE.txt
set MYEXAMPLE=%MYTEXT%
...
0
votes
0answers
35 views
convert a string of character to binary
i'm trying to convert string of four character to binary form so each character will have two binary for example(A=00 and B=01 and C=10 and D=11), can anyone help me, thanks for help.
int in[16];
...
0
votes
1answer
168 views
Recursion String in Java and removing characters
Here is what I have so far, but DrJava doesnt seem to compile it. It is supposed to print out "!olleH".. and I keep getting these errors: cannot find symbol : class Sentence, cannot find symbol : ...
0
votes
1answer
163 views
how to make c# texbox take unicode characters as a character of size 1
I have a textbox control in a c#.net project (ASP.Net) , which accepts 50 characters on it. If I add a unicode heart (♥) symbol it will take around 4 character size , so the validation is not ...
3
votes
4answers
104 views
Very fast search for specific characters in Java
this probably seems like a bit of a silly question.. And maybe it is. But I have a function which I use very frequently and wanted an opinion on if this is the fastest way to do the job. The function ...
0
votes
0answers
105 views
Importing Chinese character data from Excel into mySQL
I've tried everything that I can think of/have found to import Chinese characters data from Excel into mysql, but cannot do it.
The data is formatted in a .txt file with UTF-16 encoding and it tab ...
0
votes
1answer
43 views
≤ and ≥ symbols on internet explorer?
I have noticed that the symbols ≥ and ≤ are broken on Internet Explorer: they display as ≥ and ≤ instead of as the actual symbol (at least on IE9 under Win7).
Is there any way ...
3
votes
1answer
71 views
R large data frame with factors won't shrink when subset [duplicate]
I have a large-ish data frame (100k Row x 50 Col) with several factor variables. I want a small subset (like 100 rows) to do some prototyping with. The problem is when I type :
train <- ...
15
votes
4answers
382 views
Why is '\117' a valid character literal in Java?
I've seen this char defined as
char ch = '\117'
What kind of representation is '\117' in?
I know escaped-sequence is '\n', for instance, or unicode is `\udddd', where d is a single hex digit, but ...
-2
votes
1answer
70 views
how to use a character as a function definition in R
I have lots of characters those are actually function definitions. How can I use that characters to execute those function?
The characters I have is as follows:
foo1 <- "function(p1,p2){, v <- ...
0
votes
1answer
40 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
2answers
44 views
How to get a list of all Latin based alphabet characters but exclude 'special characters' in PHP
I am working on a PHP based system that is planned to be rolled out around Europe and for a certain form field I am trying to limit input to just alphabetical characters only.
However, this could ...
0
votes
0answers
30 views
framework for building character recognition applications?
this is my first question in stackoverflow !
i am looking for a framework that support building character recognition systems.
i have found gamera in python ...
0
votes
1answer
55 views
How to Search and find Word ( No sensitivity to upper or lower character )
I write a code :
string strSearch = textBox1.Text;
XDocument xdoc;
List<string> lstItemsForAdd;
lstItemsForAdd = xdoc.Descendants("name")
.Where(item => ...
0
votes
2answers
134 views
Character Repetition
I am writing a simple program to calculate the repetition of characters in a string sequence. The program I have for now is as below, but I am looking to see if it can be optimized any further. I ...
0
votes
2answers
335 views
quick sort an Array of characters (string) C programming
I have a character array
char word[30];
that keeps a word that the user will input and i want to sort the letters
for example if the word is "cat"
i want it to make it a "act"
I suppose is rather ...
0
votes
1answer
78 views
Regex for string that contains a '='
I've tried to create a regular expression that validates a string and checks if it has a = character in it.
I also need it to be in brackets like this
(.*)
in order to retrieve the value later.
...
0
votes
1answer
71 views
JavaScript (Dojo) XHR - encode special characters
I'm posting my form via JavaScript (Dojo) XHR. Everything works fine except when I wish to post any special characters. For example XHR tags:
<someTag>
I get error 500 (internal error). How ...
0
votes
1answer
23 views
Changing Order of When to Count Characters
I've got code that currently takes a huge string from a file. It counts an occurrence of a particular string "GCAA" and returns how many times it appears. Then, it replaces certain characters through ...
0
votes
1answer
41 views
Attempting to count a certain string and how many times it repeats. Also, replacing characters with other characters. All from a file read
I've got code so far that seems to change letters. However, this is how it should be changed:
All G become C. All C become G. All T become A. And all A become T.
This is where my problem is ...
0
votes
1answer
124 views
Regular expressions with Indian characters
I wonder is it possible to write a regular expression for indian characters? I want to validate if the given character is an Indian letter or number. I found this two questions:
What are the unicode ...
0
votes
3answers
354 views
strToInt function convert list of characters to integer in C
In C, I need a function that takes an alphanumerical list characters from 0-9 and converts it to an integer.
Code:
int strToInt(char string[])
{
int i, intValue, result = 0;
for (i = 0; ...
0
votes
3answers
45 views
Wanting to Change specific Characters from TextFile into Other Characters. Not trying to Write, only wanting to print out into the console
I have a text file that has a bunch of data in it. At certain instances of this text file, I am trying to replace the follow letters in it: A->G, C->T, etc. Basically, I know I need to read the file. ...
1
vote
1answer
67 views
Redirect all html extensions with the following characters in htaccess
I have thousands of pages being crawled like this: (With the characters after the shtml extension)
news2005/1124024714.shtml</a>
news2005/1126747676.shtml</a> ...
2
votes
1answer
53 views
RegEx how to properly use OR pipelines
I need to know how to properly use "OR" when it comes to individual characters and whole phrases... For example I have code that is checking for any number of characters OR words that are found in an ...
0
votes
2answers
96 views
Actionscript 3 Making the character to Jump
I am making a platformer game. But I am having issue because whenever I pressed the spacebar to jump, the character will stuck in the mid-air. However, I can resolved the problem by holding spacebar ...
-1
votes
2answers
154 views
Trigger event with jquery when 3 characters are entered in the input field
I have a HTML input field, lets say
<input type="text" maxlength="50" size="50" name="subject" id="subject">
I need to trigger a function on every 3 charachters entered.
For example:
If ...
0
votes
3answers
108 views
Algorithm behind unclosed character literal
In java or in scala declaring a string within single quotes would throw the
'error: unclosed character literal'
I was wondering if anybody can tell me the exact mechanics of how the string ...
0
votes
2answers
23 views
Find certain value and add new value
I've got a dictionary in a mysql db with international words in it. I want to find these words and insert a new version. Not replace.
IE when a user runs a PHP query for the value "currencies", both ...
0
votes
1answer
57 views
Why Not Reading Simple Character Through File?
I am reading a character from file '☼' this character is typed in notepad by pressing (ALT+15), now I have to print this character and the value 15(Respective ASCII value of this character) on ...
0
votes
2answers
74 views
Output Weird Characters To Screen in PHP
I am trying to output to the screen strings that contain odd characters such as ® ™. When I do so, � replaces all the odd characters. I have tried looking into htmlentities() but that did not output ...
0
votes
2answers
56 views
how to transform japanese english character to normal english character?
I have an japanese english character.
This character is not normal english string.
Characters: Game
How to transform this character to normal english character in php?
1
vote
3answers
117 views
data frame in user defined function in R
I'm trying to make a function that takes two arguments. One argument is the name of a data frame, and the second is the name of a column in that data frame. The goal is for the function to manipulate ...
-1
votes
6answers
95 views
How do you turn a single character from a character array into a string?
I'm using this for loop to go through my array's individual characters from a string.
for(int i=0;i< array;i++){
I need to print the characters one by one using g.drawString. Therefor I need ...
0
votes
1answer
756 views
Fortran 95: Reading a character string of unknown length
I am brand spanking new to programming full stop, let alone specifically Fortran so apologies in advance if my question is a bit on the iffy side!
I have been tasked with writing a program that will ...
1
vote
4answers
97 views
Split a sting every 3 characters from back - Javascript
How do we split a string every 3 characters from back using javascript.
str = 9139328238
And after the desired function it would become
parts = ['9','139','328','238']
How to do this elegantly?
0
votes
1answer
92 views
PDFSharp with Chinese characters
I have problem with displaying Chinese characters in PDFSharp in C#. During process of creating the PDF string it's ok, but after creating pdf file it doesn't display it. I found one solution which is ...
1
vote
3answers
879 views
Only allowing up to three digit numeric characters in a text box
Is there a way to only allow a user to input a maximum number of characters into a text box? I want the user to input a mark/grade and only be able to input 0 - 100. Below I have code that monitors ...
2
votes
4answers
77 views
How do I reverse this basic encrypt?
public static String basicEncrypt(String s) {
String toReturn = "";
for (int j = 0; j < s.length(); j++) {
toReturn += (int)s.charAt(j);
}
//System.out.println("Encrypt: " + ...
-5
votes
1answer
51 views
Character Distributions [closed]
How can I solve this in Python?
Please enter a string of text (the bigger the better): The rain in Spain stays mainly in the plain.
The distribution of characters in "The rain in Spain stays mainly ...
0
votes
1answer
25 views
Charset in index page with SQL queries
In my index.php I have some fixed text written with specialchars (for ex. è à ä ö).
I also have a query wich post text coming from a database. This text has also spcialchars.
The database is setted ...
0
votes
2answers
154 views
How to read in a character array in C of indeterminate size?
I've tried both a recursive and iterative method to this, but I keep running into the issue of storing a character string of an indeterminate length. If their is some sort of library or Api call that ...
0
votes
1answer
139 views
Pasting instead of typing text into input field with character limit javascript
I have code that limits number of characters with a sort of "countdown" field that works in real-time as the user types.
Everything works perfectly except when the user "pastes" their text. Only ...
1
vote
1answer
107 views
HTML5 validation error a href (NFC)
i masked all special characters in the following url but w3c-validator still throws error.
Ich checked all the NFC Tutorials but i have no idea where is the error. Andyone any idea?
URL:
Asche
...


