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)

-5
votes
1answer
76 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
55 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
74 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
110 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, remove the last 15 characters.. basically if it is possible, i would like to ...
0
votes
1answer
51 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
69 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
76 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
54 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
77 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
128 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
56 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
219 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
46 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', ...
2
votes
2answers
103 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
89 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
42 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: ...
0
votes
0answers
57 views

How to escape special characters in scp

I want to be able to escape any worst case scenario file path in scp. I can't find a way to escape a file with an exclamation point and a " character at the same time. Back story: I have a webpage ...
1
vote
1answer
72 views

How do I iterate through an UFT16 encoded string character by character?

I have an UFT16 encoded string theUFT16string. It contains double byte characters. I would like to interate through it Unicode character by Unicode character. I understand that the chunk expressions ...
0
votes
1answer
72 views

Get information from one column to another

I started working with R recently and I am trying to find a solution for the following problem: I have a data.frame with several columns. One of them contains file names with all the information ...
0
votes
1answer
49 views

Allow all characters in Android app

I am helping to develop an app for Android that uses special characters from different parts of the world at times, specifically when listing the names of people. So, a good example would be a Spanish ...
-1
votes
1answer
147 views

Convert characters to UTF8 in MySQL (é to é)

I've got a MySQL problem. My whole website except my database is in UTF8. I just recently tried to convert it to UTF8 with all kind of commands, but the main issue is still there: the accents don't ...
1
vote
2answers
53 views

Java Character.valueOf('x')?

I'm just curious, but what's the difference, when calling a method with parameters, between 'x' and Character.valueOf('x') in Java? Thank you.
0
votes
1answer
72 views

Parsing HTML from XML description tag with illegal characters

I'm using a QML XmlListModel to display XML feeds which works. Except the formatting is off due to HTML being contained in the description tag below. <description>&lt;p&gt;&lt;a ...
0
votes
2answers
51 views

Why does the `Console.Read()` keep jumping to another spot?

I have a method that is used to ask which way a person would like to go in a Console game. Afformentioned method: private static void dirChoose() { Console.SetCursorPosition(0, 7); ...
0
votes
0answers
46 views

tinyMCE richtextbox last character is cutting off

I am using TinyMCE RichTextBox in ASP.NET. when we edit, we entered the text after existing text, into the RichTextBox and save, then last character is cutting off. Please help me. Thank you.
1
vote
1answer
40 views

Salvage Hebrew from MySQL column with wrong character set

So stupidly I've stored hebrew in a MySQL table with the wrong character set. I realised after an influx of data was entered and I'm wondering if it's still possible to access that data. I've since ...
1
vote
3answers
64 views

RESOLVED Regex Newbie Remove all before and after Number X Number

I ask my first question here because i need to isolate some characters in Fri 2 Mar 2012 11:14:25 JPEG 960x640 960x640+0+0 8-bit sRGB 64.7KB 0.016u 0:00.017 I want isolate 960X640 but this ...
0
votes
0answers
16 views

Fontawesome - Errors on Devices and Tablets

I'm using fontawesome ( http://fortawesome.github.io/Font-Awesome/ ) which provides some nice little characters that act as icons. I'm noticing however they do not work on devices? Any suggested fix ...
2
votes
1answer
144 views

Convert AES encrypted hex string back to string in C++

In C++, I have an AES-encrypted char* which I transform to its HEX representation before sending it as an URL parameter, just as it is done in this question. Now, I want to do the opposite, that is ...
4
votes
6answers
82 views

Reading Characters from a Word ? Java

I am trying to get the characters or the letters from a word. For example: input = "apple" output = "a", "p", "p", "l", "e" However, I am using the BufferedReader class. Is there any way to read ...
0
votes
0answers
180 views

android webview don't show Arabic characters

I've searched for similar problem but I can't find any accepted solution! my emulator shows the Arabic characters through the application successively ,, but when it runs the webview ( Arabic html ...
-1
votes
2answers
43 views

What type of characters are these and how to decrypt? [closed]

So, just as the title says above is related to the fact that I dumped a column from a table in a database with havij (sqli) which was suposed to give me numbers but instead it gave me this ...
0
votes
1answer
206 views

PHP Replace special characters with corresponding ascii code

I'm looking for a function that converts all special characters in their corresponding ascii code! I'll exlpain! I have this code: <trust:RequestSecurityTokenResponseCollection ...
-1
votes
2answers
176 views

How to remove special characters from string using batch

I have very little knowledge in batch programming. I want to remove special characters from string Suppose If String= " How:to,convert special characters" wants to convert into this " ...
0
votes
1answer
25 views

checking Yes/No input for PCSpim

I am trying to figure out the best way to check user input in assembly language for PCSpim, for a programming assignment. Basically, I will prompt the user to enter whether or not they would like the ...
-2
votes
1answer
51 views

Change characters in PHP

I have a problem with a replacing characters, I do not know how to do that. We in Slovakia have characters with interpunctions. How do I change (eg. á) for html code at input. If I have a string ...
0
votes
2answers
69 views

Dynamic generate 8-Digit-Unicode to Character

I am going to display Unicode dynamically, For example, I know "\U00020001" will display a character. (variable "standard_format" below). However, I can only show the whole string directly ...
2
votes
0answers
61 views

File content truncated when using polish characters

Code: #include <fstream> const wchar_t * testArray[] = { L"Wszystkie kategorie równoważne", L"Oczekiwane przepływy pieniężne", L"Risk i dojrzałość", L"Pozycja strategiczna i ...
0
votes
2answers
94 views

Implementing a Map to count character frequency

Basically I'm trying to implement a map using a String as the key (single character) and an integer variable (character frequency). I get inaccurate frequencies when the program runs. Does anyone ...
2
votes
3answers
102 views

How to remove unnecessary characters from string?

There is a problem in character when I fetch data from database. doesn�t It�s I have tried to remove it using str_replace function but it's not working. str_replace('�','',$str); The encoding ...
1
vote
2answers
179 views

Two Dimensional Array Perimeter and Initializing Data

I am a beginner in java, so please go easy on me. I am working on a practice method problem that deals with two dimensional arrays. The problem is a method that tells you to take a two dimensional ...
0
votes
1answer
39 views

bash replacing multiple different string characters

Anyway to simplify these two into one: temp=${i//[/\\[} temp=${temp//]/\\]} input: i[1] i[2] output: i\[1\] i\[2\]
0
votes
0answers
55 views

Lazarus TextOut prints little square instead of characters

I am programming in Lazarus at school. I wrote one program for chess table, but I have problem with printing these two charcters ♂ and ♀. I tried this code var s : string; ... s := 'VKS' + ...
2
votes
3answers
116 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?
1
vote
0answers
33 views

Maximum characters Facebook comments?

Is it possible to reduce the maximum characters so you get earlier the "read more" link? I added comments this way to my website: https://developers.facebook.com/docs/reference/plugins/comments/ I ...
0
votes
2answers
78 views

How to remove hyperlinks, email ids, etc from a text document using regex?

I have some text documents which contains: Different types of emails addresses: I mean public domain such as gmail, yahoo, etc and private emails as well such as abc@mycompany.org... Different ...
0
votes
2answers
93 views

php code to validate alphanumeric string

I want to validate alphanumeric string in form text box in php. It can contain numbers and special characters like '.' and '-' but the string should not contain only numbers and special characters. ...
1
vote
4answers
62 views

java how to replace commas before sending over internet

I guess this is a two part question: I am creating an application for different devices (phones,tablet,tv box) that takes a text box with user input (a few sentences) and sends it to the server. There ...
7
votes
2answers
100 views

Convert string to single digits and sum

I've tried for hours to find a solution to what I thought was an easy task but I failed. I have a string consisting of 3 different characters ('I','R' & 'O') with length from 1 to 6. E.g IRRROO ...
1
vote
1answer
34 views

wordpress plugin function that will return the character count of the post being saved

I need to have a function that will get the content of the post being saved, count the characters including punctuation and spaces and return a number. i could use $text = mb_strlen($text, "UTF-8"); ...

1 2 3 4 5 41