Refers to a symbol that represents a letter or number. Also, the bit pattern used to represent such a symbol.

learn more… | top users | synonyms (1)

3
votes
1answer
29 views

Is there a unicode character for this symbol? (the “move” cursor)

I'm looking for a unicode character that shows up like the "move" cursor. I don't know what it's called; it makes it hard to search for it. Didn't see one in any of the list of "arrow" characters.
1
vote
2answers
33 views

Vim: delete lines based on character(s) in specific position on line

I'm working with a large text file and need to be able delete lines based on the value of the 25th character on the line, ie if it is equal to H, K or Z. Is this possible, either just by matching one ...
0
votes
3answers
55 views

How can I insert multiple new line characters within a file using python?

I have a fasta file that does not contain any return characters. The file looks something like this: ...
1
vote
1answer
13 views

Whether current character rendered width depends from previous character in Android

I have a question about one android text rendering detail: Whether current character rendered width depends from previos character in android text renderer (for example in textview)? For example if ...
-1
votes
5answers
40 views

How to change color each of the characters of string in javascript? [duplicate]

I have a string "Hello World!". I want to change each color of the characters in the "Hello World!" word in JavaScript. For example, "H" is yellow, "e" is red, "l" is blue and e.t.c. How ...
5
votes
2answers
75 views

In Java, should I escape a single quotation mark (') in String (double quoted)?

In Java, \' denotes a single quotation mark (single quote) character, and \" denotes a double quotation mark (double quote) character. So, String s = "I\'m a human."; works well. However, String s = ...
0
votes
0answers
16 views

Convert file name in UTF-8

My site has a lot of photos named in UTF-8, ex: Đường-vào-Măng-Buk-2.jpg But on the server, this file is named in other strange characters: -ɦ¦ß+Øng-v+áo-M-âng-Buk-2.jpg By this reason, these ...
0
votes
2answers
44 views

Idea on how to create a C function that takes a character string and returns a character string with date and time

I'm pretty much new to C and I would like to write a function where it takes a character string and returns a character string with current date and time in the front. I need it for some logging ...
0
votes
1answer
28 views

To filter/subset a data frame based on character vector with R

I have a data frame look like this : data.frame' 45678 obs. of 130 variables $ Seqeunce : chr "AAAAAIGGR" "AAAAAIGGRPNYYGNEGGR" "AAAAASSNPGGGPEMVR" ... $ IDs : chr "1404" "4963" ...
0
votes
1answer
33 views

How do I force user to not be able to type past a certain point?

I am currently making a maze program where the user types which direction they would like to go, but they can type anything thanks to the Console.Read() method. Is there any way to limit how many ...
34
votes
4answers
13k views

What is a vertical tab?

What was the original historical use of the vertical tab character (\v in the C language, ASCII 11)? Did it ever have a key on a keyboard? How did someone generate it? Is there any language or ...
0
votes
1answer
25 views

removing nonalphabet characters in a filename

I have a bunch of files and I'd like to remove all the characters that are not in the alphabet. So given a filename of "Home - noises (f).txt" i want a result of "Home noises f.txt. the batch file ...
2
votes
0answers
13 views

How to Edit the character motor script to enable slide on tagged objects rather than it is greater than slope limit?

I am working on a 2.5D platforming game on Unity3D and I need my character to slide on tagged objects rather than being over the slope limit. I am using the character motor and FPS input scripts. I ...
0
votes
1answer
42 views

StringIndexOutOfBoundsException in a FOR Loop [closed]

import java.util.Scanner; public class Test { public static void main (String [] args){ String word = "ErFLwWSa$ F?ytWtmVRLWmDj #4STs!@ VRa!12OW"; String word2 = "GREEN"; String result ...
1
vote
3answers
300 views

Get absolute position for a given offset on TextView (Android)

I have a TextView in which I want to place a solid color block over given words of the TextView, for example: "This is a text string, I want to put a rectangle over this WORD" - so, "WORD" would have ...
0
votes
3answers
28 views

Javascript, check for identical characters

I got to make a script for checking an input box (password) for the same characters occuring twice. This should be used alongside with regex validation (that's already fully working). To succeed I ...
0
votes
0answers
21 views

parsing special characters in php mailing script

I wrote a simple php script to send emails from my server for a contact form. I am seeing responses with special characters such as quotation marks coming out as &#34 and such in the emails. It ...
30
votes
6answers
53k views

Java: remove all occurances of char from string

I can use this: String str = "TextX Xto modifyX"; str = str.replace('X','');//that does not work because there is no such character '' Is there a way to remove all occurrences of character X from a ...
0
votes
2answers
36 views

Java character to represent all characters

I've searched, but all methods i found did not work. I've got a file with Arm.addBox( -2.5F, -2F, -3.09F, 5, 10, 6); ShoulderPlate.addBox( -0.5F, -1F, -5.5F, 5, 2, 1); ...
0
votes
2answers
35 views

Java ASCII control codes to literal values

I might be somewhat stupid here, but I can't seem to think of a straightforward solution to this problem. I've currently got an int[] that contains ASCII character codes, however, with the ASCII ...
1
vote
1answer
19 views

Crystal Report - How check if a string is in a entry on a array?

I would like to make a condition that look each element of a array and if the current element (string) possess a specific charactere, the condition return true. More details: The condition must be ...
0
votes
1answer
67 views

How deal with special characters in GET request for a password field?

I'm working in a web app that authenticates through a get request (and I have no other option), the method already works, except for users whose password contains special characters, for example there ...
0
votes
1answer
67 views

Qt, C++ - Reading control characters from a file

this is my first time asking a question so please have some patience with me. I'm trying to read the content of a text file which is meant to be sent to a printer. In the middle of the characters ...
1
vote
1answer
31 views

alternative (ie., better choice) for Hashmap on character

Just as EnumMap is the better choice of map when working with enum, is there a better choice of map (rather than the generic HashMap that everybody uses) for dealing with character? Characters are ...
1
vote
4answers
54 views

I need help understanding character manipulation

Question: I need to write a function, int is_lower_101(char c), that returns true if it's a lowercase and false otherwise. And I can't use the predefined tolower type functions. I also can't use ...
1
vote
3answers
61 views

Concatenation with 2 strings

I've seen methods of doing this with "strcopy" and "strcat", but I'm not allowed to use any predefined string functions. I'm given: void str_cat_101(char const input1[], char const input2[], ...
1
vote
1answer
39 views

Regular Expression Doesn't Work Properly With Turkish Characters

I write a regex that should extracts following patterns; "çççoookkk gggüüüzzzeeelll" (it means vvveeerrryyy gggoooddd with turkish characters "ç" and "ü") "ccccoookkk ggguuuzzzeeelll" (it means the ...
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 ...
0
votes
1answer
43 views

Implementing a command-line argument

I have to implement the main function with the following signature: int main(int argc, char *argv[]) What is a command-line argument and why don't I need test cases for it? And what do they ...
0
votes
3answers
32 views

Having trouble with my code involving rot-13 [closed]

I have to write a program that will essentially return a character that is 13 places forward or backward. It only works for characters in the alphabet and if it's lowercase, it stays lowercase and if ...
-1
votes
2answers
28 views

I need \r\n instead of \n in text

When I open a file in Python and read it in I get this format: Data\r\n\r\n\t When I paste it I get text without formatting characters, which I encode like this: encoded = clipboard.encode('utf8') ...
0
votes
1answer
23 views

RandomAccessFile - Chinese characters when reading

Field on file.dat are organized this way: NAME SURNAME NAME SURNAME ... I use this piace of code to write to the file: RandomAccessFile file = new RandomAccessFile(dir, "rw"); ...
-8
votes
0answers
28 views

Java ArrayList of Doubles to Letter Grades [closed]

So i am basically trying to convert all the doubles in the Arraylist FinalLetter into characters A,B,C,D,F The Grades should be in the following Format: A should be 90-100 B 89-80 C 79-70 D 69-60 F ...
0
votes
0answers
23 views

Detecting Unrecognized (codepage-unicode) Characters in a string

How do you detect an unrecognized code page character in a string in vb.Net? These charaters usually show up in a default character such as "?" or a square when the current code page can not recognize ...
0
votes
1answer
10 views

Sub domain: maximum number of characters allowed?

I wonder how many characters allowed for sub domains? Can I do like: really-long-sub-sub-domain-name.really-long-sub-domain-name.long-63-character-domain-name.tld ? Is there any differences between ...
1
vote
1answer
17 views

Check for spaces using regex

I'm using regex (I think that's what it's called - haha) to check my users' name to make sure it's valid. I want to make sure that the user doesn't have any characters. Just letters and spaces. I've ...
2
votes
2answers
39 views

Is it necessary to use — and – in XHTML or HTML5?

It seems that it is best to use the & escape, instead of simply typing the ampersand (&). However, should we be using X/HTML character entity references for dashes and other common ...
1
vote
3answers
17 views

Javascript Code to Append a String Each Character

i have this string: "Abcd" i want to append a string ("Z") each character above: result: "AZbZcZdZ" please help me, i have searched this in stackoverflow, but no result.. please forgive me ...
0
votes
1answer
89 views

String.find not working for '.' (dot) character : corona SDK

I'm facing a problem with corona SDK. When I'm searching for the index of . in a string, it is always returning 1 (even if the string does not contains .). I can't figure out what the real problem ...
1
vote
1answer
17 views

Detect a specific html entity character and replace it with another one

Using Javascript, I want to test for the presence of a right arrow character ⇒ in a string and replace it by a down arrow character ⇓ Basically, do something like this: if ( ...
1
vote
0answers
16 views

Firefox entity/special character text shown instead of Special Character glyph

I am trying to use a IcoMoon font I compiled and have run into a problem on Firefox not displaying the character but instead showing a stacked text of that entity. Say the character is  ...
6
votes
2answers
109 views

Split String By Character

I have a case in which I'm doing the following: final String[] columns = row.split(delimiter.toString()); Where delimiter is a Character. This works fine when I need to split based on tabs by ...
3
votes
6answers
42k views

Converting String to “Character” array in Java

I want to convert a String to an array of objects of Character class but I am unable to perform the conversion. I know that I can convert a String to an array of primitive datatype type "char" with ...
0
votes
2answers
93 views

What is this ASCII character code ? [closed]

I want ASCII character code of character code which i red circle. I want display this symbol in word using C#. Thanks !
0
votes
1answer
16 views

index last character of a raw_input string

I'm pretty desperate to get moving with my code and need help! I am new to programming and have learned only recently how to slice. I am practicing by writing my own code similar to pyg latin except ...
6
votes
2answers
9k views

xcode cut last characters from string

im workin on a xcode programm and need to cut the last 5 characters from a string.... i wont find it so i try to ask it her.... does anybody know how to cut the last 5 characters from a NSString? ...
1
vote
1answer
51 views

Python - Unable to rename a file with special characters in the file name

I have a bunch of mp3 files that somehow have a special character in the 0th index. So the file name looks like this - ▶ Alone Tonight - Radio Edit - Above & Beyond .mp3 I want to be able to fix ...
1
vote
1answer
20 views

When can you use a character array's name to make a valid L-value?

Given a pointer and an array, setting one equal to another fails in one case, and works in another. char *c_ptr = "I'm a char pointer"; char c_arry[] = "I'm a char array"; c_ptr = c_arry; //This ...
2
votes
1answer
34 views

How to count Indic Script telugu Characters

I have some JavaScript that counts the total number of characters in a text box. It's fine with english, but when I type Telugu script it shows the wrong count. For example, Anil = 4 అనిల్ = 4 But ...
0
votes
2answers
237 views

Sublime text 2 - broken letter

I am using Sublime text 2 and I can type all polish letters (even Ł) beside ł. That is strange, because there are not any keyboard shortcuts with Alt_gr + L (That's the way I type it). Nothing comes ...

1 2 3 4 5 40