Refers to a symbol that represents a letter or number. Also, the bit pattern used to represent such a symbol.
-3
votes
2answers
46 views
Meaning of the percent (%) character in javascript [duplicate]
What is the meaning of the percent (%) character in javascript. When and for what we can use this character?
2
votes
3answers
66 views
use regular expression to find and replace but only every 3 characters for DNA sequence
Is it possible to do a find/replace using regular expressions on a string of dna such that it only considers every 3 characters (a codon of dna) at a time.
for example I would like the regular ...
1
vote
1answer
47 views
Count the number of characters that are received in socket programming
This is the code for counting the number of words which works perfectly.
st=new StringTokenizer(str);
while(st.hasMoreTokens())
{
String s=st.nextToken();
...
-2
votes
1answer
58 views
Accessing a specific character in an array of strings in C
Here's the code I'm using to load the file in line by line:
int i = 0;
FILE *fp = fopen("../sources/files/p13num.txt","r");
if(fp)
while(i < 100 && ...
0
votes
0answers
21 views
Hibernate BasicPropertyAccessor Exception when Using Transformer aliasToBean
We have a custom AliasToBeanResultTransformer, which is used to transform a Hibernate result into a custom object. (The Transformer doesn't do anything special, other than remove certain unneeded ...
0
votes
0answers
27 views
World wide unicode character occurrence frequencies
I wonder if there are any global projects that seek to answer this question:
What are the general occurrence frequencies of the individual Unicode characters across the web?
I am working on some ...
0
votes
1answer
30 views
Finding escape characters in AT&T x86 assembly
Question 1: I have the following assembler code, whose purpose is to loop through an input string, and count the number of escape characters '%' it encounters:
.globl sprinter
.data
.escape_string: ...
0
votes
0answers
29 views
Comparing to characters in SPARC fails
Attempting to get a string and character from the user and count the number of times that the letter occurs but it doesn't increment the counter in the program.
.section ".data"
string: .asciz " ...
0
votes
1answer
42 views
Checking for escape character(0x1B,\033) while reading from socket
Ok, so I'm designing an Android MUD client as part of my school project. I'm having an issue, however, while implementing ANSI color parsing. I read in the data on a byte-by-byte basis. I've tried ...
0
votes
4answers
37 views
Only allow certain characters to be entered in html textinput
I just need to allow a user to enter the following characters in the textinput:
a-zA-Z0-9!@#$%^*_|
<form action="http://www.cknuckles.com/cgi/echo.cgi" method="get" name="logOn">
User ...
1
vote
3answers
36 views
JavaScript - Output characters randomly
Not sure how to go about this but I need to output a set of characters x, y and z. The output is 3 characters long and consists of x,y and z. However the characters are as likely as each other. ...
0
votes
2answers
63 views
Byte Buffer To String
Reading a Byte buffer:
while (...)
{
builder.Append(Encoding.ASCII.GetString(buffer, index, 1));
++index;
}
I'm getting the following result: "20202020202020202020202057363253304b4358", ...
0
votes
0answers
33 views
Qt UI issues on Windows
We build our application for Windows and OS X on the same code base. We have created localized QM files and loaded in to translator. But certain characters are displayed as blank on Windows and they ...
18
votes
9answers
24k views
How to remove characters from a string
For example I have a user input a phone number.
cout << "Enter phone number: ";
INPUT: (555) 555-5555
cin >> phone;
I want to remove the "(", ")", and "-" characters from the string. ...
-1
votes
0answers
20 views
Show 200 characters of mysql, in this format
I need to only show 200 character of the 'review' (which is 800-900 characters long) on my homepage.
The php code i use is this
<?php echo htmlspecialchars($row->review); ?>
I need it to ...
1
vote
2answers
79 views
Reject repeated character in lex
I need to write a regular expression for a flex program where it finds duplicate characters and rejects them, for example it approves of ABD but not ABDA or AABD because "A" is repeated in the ...
-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 ...
2
votes
4answers
68 views
How to write hashCode method for a particular class?
I'm trying to generate a hashCode() method for my simple class but i'm not getting anywhere with it. I would appreciate any help. I've implemented the equals() method, which looks as follows, and ...
1
vote
1answer
33 views
how to strip alt character code with php
I'm using this code to strip unwanted characters from a string, but I have a big problem with ALT+0160 character which is a non break space. I need to remove it as well
$name = str_replace ("'", ...
-2
votes
1answer
32 views
Convert part of dataframe to character list in R
I am attempting to extract the header info from a large table and create a character list (so that I can use this list as a list of the variables contained in my table). I extract the header info in ...
1
vote
2answers
70 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
6answers
8k views
How to use ArrayList.addAll()?
I want to fill an ArrayList with these characters +,-,*,^ etc. How can I do this without having to add every character with arrayList.add()?
0
votes
0answers
38 views
Jsfiddle - strange characters on UI
what's the solution for this kind of problem (weird characters) that suddenly appeared for me on jsfiddle.net? This started a few weeks ago. Any similar experiences?
Update 1
It works perfectly ...
1
vote
6answers
60 views
'\\' characters are being treated as one character when using the length property in c#
I am trying to get the length of a string that has \\\ values.
e.g. "C:\\\Dir1\\\Dir2\\\Dir3\\\Dir4\\\flower.bmp"
The length of the example is 38 characters.
When I use the length property the ...
0
votes
3answers
74 views
Adding special characters to a String using jQuery [closed]
I have string
CEE0001
and i want to add + sign between each character of the String.
eg: C+E+E+0+0+0+1
How do i do this using jQuery.
0
votes
1answer
27 views
Replace special character or whitespace with -
I want to make every string look like this:
"this-is-string-one"
So main string could contain:
"This! is string, one"
So basicaly replace !?., whitespace and characters like that with "-".
0
votes
0answers
45 views
TIToken crashes as soon as I type some letters in the textfield
I downloaded TIToken (https://github.com/thermogl/TITokenField) and integrated it in my app. All works, but when I type a letter in the textfield, the app crashes:
* Terminating app due to ...
1
vote
1answer
52 views
Velocity and Time Elapsed in sfml 2.0
So I have been looking for hours now and I can't seem to find anything to help me with this, so I'll start by saying I am new, like very new, but I do understand that in order to have constant move ...
1
vote
1answer
70 views
Java: How to check if first character typed == x
I have a textview and 3 button with textview.append("1"); textview.append("2"); textview.append("3"); command,
and another button, button4, with empty command.
My question is how can I check if the ...
1
vote
2answers
46 views
Converting integers to ASCII results in beeping and illegible text?
I've never encountered a problem like this in a console application - I hear some rather frightening beeping, the program (and my computer) freezes momentarily, and then the console just stops working ...
0
votes
3answers
74 views
regex to replace words with more than two consecutive characters
How can I detect the presence of more than two consecutive characters in a word and remove that word?
I seem to be able to do it like this:
# example data
mystring <- c(1, 2, 3, "toot", ...
4
votes
6answers
6k views
Remove “empty” character from String
I'm using a framwork which returns malformed Strings with "empty" characters from time to time.
"foobar" for example is represented by:
[,f,o,o,b,a,r]
The first character is NOT a whitespace (' '), ...
2
votes
3answers
88 views
Emacs: Delete first 'x' characters for every line in region
I want to delete the first x characters for every line in region.
Is there any key binding available without using regex?
3
votes
4answers
9k views
Java - Indexes of all occurrences of character in a string
The following code will print 2
String word = "bannanas";
String guess = "n";
int index;
System.out.println(
index = word.indexOf(guess)
);
I would like to know how to get all the indexes of ...
1
vote
0answers
40 views
Sorting å, ä, ö - gets mixed with a / o
Using WordPress and PHP, I'm creating a list of tags on a site sorted by their first character,
<?php
$letters = range( 'a','z' );
array_push( $letters, 'å', 'ä', 'ö' );
foreach ( $letters as ...
0
votes
2answers
52 views
Java TextArea Get Possible Amount of Characters at Line
I would like to know if its possible to know how many characters a line can have programatically. I already searched but didn't found any useful..
Basically I want to fill a line with the same ...
0
votes
0answers
41 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 ...
-1
votes
4answers
64 views
Boolean method with strings [closed]
I'm currently doing this task. In the first part of the task it required me to check a string with boolean. For it to return true and only true only if every character of the input string is one of a, ...
6
votes
5answers
11k views
C++ For every character in string
How would I do a for loop on every character in string in C++?
I know it's possible in python, but I don't know if it's possible in C++
1
vote
2answers
4k views
android edittext inputfilter should accept space,character & number
street = (EditText) findViewById(R.id.street);
InputFilter filter = new InputFilter() {
public CharSequence filter(CharSequence source, int start, int end,Spanned dest, int dstart, int dend) {
...
0
votes
1answer
39 views
Escape Sequence - Visual Studio - C
My professor has given us a program that we must fill in the blanks of missing functions, and then once complete, turn this finished project .c file in as our final project for the class.
Problem is, ...
2
votes
1answer
56 views
Oracle regex expression sorting out special characters and Czech characters
Due to a interface with a bank I need to sort out some unwanted characters from a name field:
This is the permitted range:
0 - 9, a - z, A - Z, / - ? ( ) . , ' + (space) – but no Czech characters ...
-2
votes
1answer
36 views
PHP - replace character referring to another character sequence in the array
i have
$a='1024,1025,0000|1020,0000|';
$b='1024,1025,0000,1020,0000,';
i want replace commas (,) in $b with (|) so that $ b is equal to $ a
like this
Output :
...
0
votes
4answers
2k views
french letters in android views show question marks
I read data from an utf8 database then display it in a listview.
but there are words in the database containing è é à á letters when I get the xml manually in the browser it shows up perfect
but in ...
0
votes
1answer
25 views
Objective C locations of character in string
I have a question about the rangeOfString method. For example:
string = @"abcagha";
int e = [string rangeOfString: @"a"].location;
This return only the first occurrence (e = 0), how do I get all of ...
-1
votes
1answer
61 views
Search for a real word in random character sequence without spaces - java [closed]
Although i am not new in java i came across a problem that i am having difficulties solving. What i want to do is
- Take two arguments as inputs
1. Random char sequence consisting of TCGA i.e. // ...
1
vote
0answers
59 views
PHP only store 1048576 characters in array
I'm working on a project that parses huge text files and store some of the information in MySQL DB. I noticed one of the field was missing info when it was displayed, however, when checking the DB ...
-2
votes
3answers
73 views
set width of characters with java [closed]
I was working on something and was wondering if there is any way to set width of a character.
For instance, lets say you enter character "i". I want to set the width of "i" to something (could be 1, ...
0
votes
2answers
34 views
Manipulating individual strings based on characters from an input in PHP
I'm wondering how to manipulate individual characters in a string in PHP. I've searched all over and can't find anything that answers this type of question. I want to take a string that's submitted ...
-5
votes
1answer
65 views
find the most frequently used character in an array? [closed]
this is my code to find the most frequently used character in an array. Please Debug it and also identify the error. it is working most of the time but in some cases the output is not correct. please ...










