Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
2answers
483 views

Delphi ^A syntax: Documented, implied, or undocumented?

Let me explain by an example. In Delphi, you can write procedure TForm1.FormKeyPress(Sender: TObject; var Key: Char); begin if Key = ^C then ShowMessage('The user wants to copy something.') ...
19
votes
9answers
11k views

What is the easiest/best/most correct way to iterate through the characters of a string in Java?

StringTokenizer? Convert the String to a char[] and iterate over that? Something else?
16
votes
7answers
11k views

Is there an upside down caret character?

I have to maintain a large number of classic ASP pages, many of which have tabular data with no sort capabilities at all. Whatever order the original developer used in the database query is what ...
14
votes
4answers
315 views

“\n” or '\n' or std::endl to std::cout?

It was many years now since I stopped using std::endl to end lines when writing to std::cout, and started using "\n" instead. But now I start seeing more snippets of code using '\n' instead, and I ...
14
votes
10answers
4k views

How can I find repeated letters with a Perl regex?

I am looking for a regex that will find repeating letters. So any letter twice or more, for example: booooooot or abbott I won't know the letter I am looking for ahead of time. This is a question ...
13
votes
2answers
349 views

Git character encoding with Spanish characters

I created a repository from existing files. Inside the set of files, was one with the name "español.gif". Now, everytime I do $ git status I receive an error: $ path/espa�ol.gif: Protocol error ...
10
votes
3answers
252 views

Why is an empty wchar_t literal allowed?

Look at the following code: int main(int argc, char* argv[]) { // This works: (Disable Lang Ext = *Yes* (/Za)) wchar_t wc0 = L'\0'; wchar_t wc_ = L''; assert(wc0 == wc_); // This ...
10
votes
7answers
564 views

Which is the most clojuresque way to compare characters and string? (single char string)

I was wondering about which is the best (clojuresque) way to compare a character and a string in Clojure. Obviously something like that returns false: (= (first "clojure") "c") because first ...
10
votes
14answers
789 views

Why don't popular programming languages use some other character to delimit strings? [closed]

Every programming language I know (Perl, Javascript, PHP, Python, ASP, ActionScript, Commodore Basic) uses single and double quotes to delimit strings. This creates the ongoing situation of having to ...
7
votes
3answers
162 views

C# - Can I get an “english name” for a character?

I was just using this most helpful link: How check if given string is legal (allowed) file name under Windows? And inside some validate code I have something that looks like (ignore the fact that I'm ...
7
votes
3answers
299 views

REGEXP_REPLACE - remove commas from string ONLY if enclosed in ()'s

I find an example at oracle forum site : Input string : a, b, c (x, y, z), a, (xx, yy, zz), x, WITH t AS (SELECT 'a, b, c (x, y, z), a, (xx, yy, zz), x,' col1 FROM dual) SELECT t.col1 , ...
7
votes
5answers
612 views

Java: How to get Unicode name of a character (or its type category)?

The Character class in Java defines methods which check a given char argument for equality with certain Unicode chars or for belonging to some type category. These chars and type categories are named. ...
7
votes
3answers
1k views

How to replace special characters with their equivalent (such as “ á ” for “ a”) in C#?

I need to get the Portuguese text content out of an Excel file and create an xml which is going to be used by an application that doesn't support characters such as "ç", "á", "é", and others. And I ...
7
votes
5answers
5k views

How to change diacritic characters to non-diacritic ones

I've found a answer how to remove diacritic characters on stackoverflow, but could you please tell me if it is possible to change diacritic characters to non-diacritic ones? Oh.. and I think about ...
6
votes
1answer
109 views

fully emulating missing distinct builtin types (specifically: char16_t and char32_t)

C++11 has two new character integral data types, char16_t and char32_t. I would like to emulate them for compilers that don't have a distinct type in order to overload I/O operations to see them a ...
6
votes
2answers
442 views

How do I find out how many bytes a character has?

I was wondering how do I find out how many bytes does a character have?
6
votes
5answers
331 views

Is a character 1 byte or 2 bytes in Java?

I thought characters in java are 16 bits as suggested in java doc. Isn't it the case for strings? I have a code that stores an object into a file: public static void storeNormalObj(File outFile, ...
6
votes
1answer
167 views

boost mpl string

Hi in boost mpl documentation I have discover mpl::string and the following example: typedef mpl::string<'hell','o wo','rld'> hello; I'm a little bit surprised because I thought that in C or ...
6
votes
6answers
347 views

String and character mapping question for the guru's out there

Here's a problem thats got me stumped (solution wise): Given a str S, apply character mappings Cm = {a=(m,o,p),d=(q,u),...} and print out all possible combinations using C or C++. The string can be ...
6
votes
7answers
3k views

Clean source code files of invisible characters

I have a bizarre problem: Somewhere in my HTML/PHP code there's a hidden, invisible character that I can't seem to get rid of. By copying it from Firebug and converting it I identified it as ...
6
votes
13answers
2k views

C++ string manipulation

My lack of C++ experience, or rather my early learning in garbage collected languages is really stinging me at the moment and I have a problem working with strings in C++. To make it very clear, ...
5
votes
3answers
381 views

Create UNIX “special character” file

Suppose I want to create, in the spirit of /dev/zero, a file /dev/seven that produces the character '7' whenever it is read from. How should I go about doing something like this? Would I need to ...
5
votes
1answer
230 views

agrep: only return best match(es)

I'm using the 'agrep' function in R, which returns a vector of matches. I would like a function similar to agrep that only returns the best match, or best matches if there are ties. Currently, I am ...
5
votes
2answers
372 views

How could I catch an “Unicode non-character”-warning?

How could I catch the "Unicode non-character 0xffff is illegal for interchange"-warning? #!/usr/bin/env perl use warnings; use 5.012; use Try::Tiny; use warnings FATAL => qw(all); my $character; ...
5
votes
3answers
1k views

How do i read single character input from keyboard using nasm (assembly) under ubuntu?

I'm using nasm under ubuntu. By the way i need to get single input character from user's keyboard (like when a program ask you for y/n ?) so as key pressed and without pressing enter i need to read ...
5
votes
2answers
470 views

Is there a library to display a Virtual Human [WPF]

While there are a lot of 3D libraries out there, I'm in struggle to find one suitable for WPF. Basically, I want a Character Animation engine, which loads bone hierarchy and allows me to manipulate ...
5
votes
5answers
275 views

What's the alternate character combination for the double quote characater in C/C++?

I've not had the Kernighan and Ritchie C reference in years, but I remember that there was a page in there that talked about how to enter characters that were unavailable to you. (WAY back in the ...
5
votes
7answers
35k views

How do I read input character-by-character in Java?

I am used to the c-style getchar(), but it seems like there is nothing comparable for java. I am building a lexical analyzer, and I need to read in the input character by character. I know I can use ...
5
votes
3answers
4k views

Array of Strings in Fortran 77

I've a question about Fortran 77 and I've not been able to find a solution. I'm trying to store an array of strings defined as the following: character matname(255)*255 Wich is an array of 255 ...
5
votes
3answers
1k views

How to split using a prefix character using regular expressions?

I would like to split the example string -- ~Peter~Lois~Chris~Meg~Stewie on the character '~' and have the result be Peter Lois Chris Meg Stewie Using a standard string split function in ...
5
votes
8answers
5k views

Why does strcpy trigger a segmentation fault with global variables?

So I've got some C code: #include <stdio.h> #include <string.h> /* putting one of the "char*"s here causes a segfault */ void main() { char* path = "/temp"; char* temp; ...
4
votes
4answers
121 views

how to count the number of characters entered and action on it?

Hi I am fairly basic in jQuery, and got stuck in a script: //hide all radio buttons first $('#q11_6_1').parent().hide(); $('#q11_6_2').parent().hide(); $('#q11_6_3').parent().hide(); ...
4
votes
2answers
97 views

Catch repeat letters in PHP - Regular expressions

I have to check user input to make sure name, last name (etc...) are entered correctly and are valid. I have to build a regexp that check if a user enters repeated letters in the first name , last ...
4
votes
1answer
70 views

Finding the indexes of the matching substrings

I'm working in R - I have a string, let's say s='CCCGTGCC', and a subtstring ss='CC', i want to get all the indexes in s that start the string ss - in my example i would want to get back the array ...
4
votes
4answers
53 views

Does continous reassigning of character strings lead to memory leak?

I have two questions: Q1. The character pointers are used to point to a location where a given string is stored. If we keep reassigning the string, does it lead to memory leak? On a Linux system I ...
4
votes
2answers
109 views

Load R library from character string

I want to create a function which includes loading a library that I make within the function. A short example (which doesn't run!): loadMe <- function(name){ genLib(xxx, libName = name) ...
4
votes
3answers
118 views

What are “exotic character sets”?

I am reading an c++ document, it said as this, Wide characters are used mainly to represent non-English or exotic character sets. What's the exactly meaning for exotic character sets?
4
votes
5answers
441 views

Handling multibyte (non-ASCII) characters in C

i am trying to do my own version of wc (unix filter), but i have problem with non-ASCII characters. I did a HEX dump of a text file and found out that these characters occupy more than one byte, so ...
4
votes
4answers
2k views

textarea character limit by Javascript & PHP

I use 2 methods to check that the user is not entering too many characters in a textarea: 1) (passive) PHP: $textarea = $_POST['textarea']; if (strlen($textarea)>300){$verify="bad";} 2) ...
4
votes
4answers
848 views

how to check for the “backspace” character in C

I'd like to know how to check if a user types the "backspace" character. I'm using the getch() function i.e. "key = getch()" in my C program and i'd like to check when backspace is pressed. the ...
4
votes
3answers
337 views

What's this text encoding?

I used Python's imaplib to pull mail from a gmail account... but I got an email with this confusing text body: > RGF0ZSBldCBoZXVyZTogICAgICAgICAgICAgICAgICAgICAgICAgICAyMi8wOC8yMDEwIDE0 > ...
4
votes
6answers
405 views

Convert a single character to a string?

Simple question (in C++): How do I convert a character into a string. So for example I have a string str = "abc"; And I want to extract the first letter, but I want it to be a string as opposed to a ...
4
votes
3answers
3k views

How many bytes does Oracle use when storing a single character?

I tried to look here: http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/datatype.htm#i3253 And I understand that I have to provide string length for the column, I'm just not able to ...
4
votes
3answers
2k views

C# - Count string length and replace each character with another

How can I count the number of characters within a string and create another string with the same number of characters but replace all of them with a single character such as "*"? Thank you.
4
votes
4answers
2k views

Count occurrences of a char in plain text file

Is there any way under linux/terminal to count, how many times the char f occurs in a plain text file?
4
votes
5answers
4k views

Python: loop over consecutive characters?

In Python (specifically Python 3.0 but I don't think it matters), how do I easily write a loop over a sequence of characters having consecutive character codes? I want to do something like this ...
4
votes
5answers
2k views

How will you print a character without library functions in C?

If for example I should not use standard library functions like printf, putchar then how can I print a character to the screen easily. Is there any easy way of doing it. I dont know much about system ...
3
votes
2answers
76 views

printing UTF-8-encoded byte string

I have a data of a form: v = "\xc5\x84" which is a byte representation of an utf-8 encoded character "ń" How can I print >>ń<< using variable v? I'm using python 2.7.2 Thanks Sorry, but ...
3
votes
4answers
121 views

How to convert character of percentage into numeric in R

I run into a problem when converting character of percentage to numeric. E.g. I want to convert "10%" into 10%, but as.numeric("10%") returns NA. Do you have any ideas?
3
votes
2answers
148 views

How to determine the position of a character in a div element?

I have a DIV element with only text inside. For example: <div>This is a simple example</div> When I click on it, it gives me the position of the cursor on surface of the div, I need ...

1 2 3 4 5 12