Refers to a symbol that represents a letter or number. Also, the bit pattern used to represent such a symbol.
0
votes
4answers
42 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
1answer
43 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
2answers
66 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 ...
-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 ...
0
votes
0answers
31 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 " ...
-1
votes
0answers
9 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
71 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
6answers
61 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
77 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
54 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
48 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 ...
1
vote
2answers
74 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
3answers
80 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", ...
1
vote
0answers
42 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
43 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
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
votes
4answers
65 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, ...
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
37 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 :
...
2
votes
1answer
58 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 ...
0
votes
1answer
26 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
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 ...
-1
votes
1answer
63 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. // ...
0
votes
3answers
23 views
Packing characters into bits?
I am trying to pack characters into bits in terms of 0's and 1's.
I have looked up many websites about bit-packing but I did not get any of them.
I just want a simple idea about bit-packing, and how ...
-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 ...
0
votes
2answers
45 views
Reading only one character (avoiding newline), then a string (for implementing simple CLI
I need to implement a simple CLI, which will initially read one character, and then will read the 2nd, or even 3rd part of the command specified by character.
For example, these would be the ...
1
vote
2answers
70 views
Alternating string of characters and digits
I was given this problem to solve. I have only the slightest idea on how it should be implemented, and I'm all too new with programming and stuffs, and would love to hear your comments on this.
Say ...
0
votes
2answers
76 views
remove last character from Specific lines
i would like to create a batch file that goes through txt files in a directory and every line that has #EXTINF in it, to remove the last character.
this is for a software that has a problem if the ...
0
votes
1answer
44 views
stacking character vectors in R
I have two factor variables in a data frame and the end goal is to combine both columns to find a list of the unique factors of both the columns combined (some of the factors in variable one are ...
0
votes
4answers
63 views
Java: Turning group of characters into single String
I've been trying to make a program that will allow me to encrypt a username and password and print the result. I can get it to work, but I want to sort the characters that come out of the loop into a ...
0
votes
1answer
55 views
How To Set character_limiter() in Codeigniter
I'm new to Codeigniter. Now I want to set the character limit in the view. First, get the data from the database with $query_result->result(), and then show it in the view using foreach().
Here is my ...
1
vote
1answer
36 views
android ignore special character input
Could any Android expert please help with an input filter to ignore the character -?
I set up a class for doing this, but all characters are ignored.....
public class InputFilterReservedCharacters ...
1
vote
3answers
63 views
Python regex find all single alphabetical characters
I want to find all indexes for each occurrence of single alphabetical characters in a string. I don't want to catch single char html codes.
Here is my code:
import re
s = "fish oil B stack peanut c ...
0
votes
2answers
72 views
Unity 4 Character Mesh Collider not aligned - character falls through. Image attached inc source unity asset link
Hello Peeps (first post yay).
I have just started to learn about unity and still going through various tutorials and learning the interface along with C#.
I am running Unity 4 and downloaded a free ...
1
vote
1answer
37 views
Python evaluates comparison of integer and character with the same value as False
I ran into this interesting little 'gotcha' this evening, consider the following code snippet:
( chr(1) == 1 )
This comparison evaluates to False on Python 2.7.4, is this a feature or a bug?, If a ...
0
votes
2answers
131 views
How to detect end of line character in a textbox string (VB6)
i have a problem with VisualBasic6 .
i have 3 Textbox and 2 Command Button .
i want to detect VbCrLf when checking first textbox , letter by letter then write in another in second textbox: 101
and ...
0
votes
3answers
45 views
Replace strings many to many in C# [closed]
I have a problem related String.Replace method. Firstly I try to change many strings as alphabets, for example,
article = article.Replace('b', 'd').Replace('B', 'D');
article= article.Replace('d', ...
1
vote
0answers
50 views
How to send ctrl+z in C
I'm working with arduino.
I want to send ctrl+z after a string in C. I tried truncating ^Z but that didn't work. So how to do that ?
-8
votes
1answer
85 views
In C++ why does reference to single character of std::string give a number [closed]
I have a string like this:
std::string N;
I assign a (test) value like this:
N = "Ant";
To print the first character, I did this:
std::cout << N[0];
But the output is 65 (i.e., the ...
0
votes
4answers
37 views
Strip everything ater second slash
If I have the following URL:
http://www.mysite.com/games/topgame
how do i use php to remove everything after the last "/"?
So I would be left with:
http://www.mysite.com/games/
I have tried this:
...






