Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

59
votes
6answers
1k views

What's the opposite of a nbsp?

A &nbsp; character is a space which doesn't allow for line breaking. <p>lorem ipsum here&nbsp;are&nbsp;some&nbsp;words and so on</p> | lorem ipsum | | here ...
15
votes
3answers
3k 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 ...
13
votes
40answers
3k views

How do you generate passwords?

Random Characters? Passphrases? High Ascii? cat /dev/urandom | strings
11
votes
7answers
4k views

Question mark in JavaScript

I came across the following line in a JS function (it was an RGB to HSB color converter, if you must know) hsb.s = max != 0 ? 255 * delta / max : 0; I'm wondering if someone can explain what the ...
10
votes
3answers
847 views

Efficient way to find Frequency of a character in a String in java : O(n)

In a recent interview I was asked to write the below program. Find out the character whose frequency is minimum in the given String ? So I tried by iterating through the string by using charAt and ...
10
votes
3answers
347 views

Why do I get garbage output when printing an int[]?

My program is suppose to count the occurrence of each character in a file ignoring upper and lower case. The method I wrote is: public int[] getCharTimes(File textFile) throws FileNotFoundException ...
10
votes
11answers
2k views

What are all of the allowable characters for people's names?

There are the standard A-Z, a-z characters, but also there are hyphens, em dashes, quotes, etc. Plus, there are all of the international characters, like umlauts, etc. So, for an English-based ...
9
votes
12answers
1k views

C++ exam on string class implementation

I just took an exam where I was asked the following: Write the function body of each of the methods GenStrLen, InsertChar and StrReverse for the given code below. You must take into consideration ...
8
votes
3answers
159 views

Separating Unicode ligature characters

Throughout the vast number of unicode characters, there are some that actually represent more than one character, like the U+FB00 ligature ff for two 'f' characters. Is there any way easy to convert ...
8
votes
3answers
197 views

Match NSArray of characters Objective-C

I have to match the number of occurrences of n special characters in a string. I thought to create an array with all these chars (they are 20+) and create a function to match each of them. I just have ...
8
votes
3answers
702 views

What is the semicolon reserved for in URLs?

The RFC 3986 URI: Generic Syntax spec lists a semicolon as a reserved (sub-delim) character: reserved = gen-delims / sub-delims gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" sub-delims ...
8
votes
6answers
6k views

NSString: Number of Occurrences of a Character?

I have an NSString and would like to get the number of occurrences of a particular character. I need to do this for quite a few characters, so it would be nice for it to be quick. In case it makes ...
8
votes
11answers
4k views

URL Routing: Handling Spaces and Illegal Characters When Creating Friendly URLs

I've seen a lot of discussion on URL Routing, and LOTS of great suggestions... but in the real world, one thing I haven't seen discussed are: Creating Friendly URLs with Spaces and illegal ...
7
votes
8answers
11k views

C++ String Length?

How should I get the number of characters in a string in C++?
7
votes
5answers
3k views

How can I escape square brackets in a LIKE clause?

I am trying to filter items with a stored procedure using like. The column is a varchar(15). The items I am trying to filter have square brackets in the name. For example: WC[R]S123456. If I do a ...
6
votes
8answers
1k views

How do I get the set of all letters in Java/Clojure?

In Python, I can do this: >>> import string >>> string.letters 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' Is there any way to do something similar in Clojure (apart ...
6
votes
3answers
2k views

Get supported characters of a font - in C#

I have a third party font with support for japanese characters which I need to use for an application. Whenever a character is not supported by this font, the often seen rectangle ("default ...
6
votes
3answers
924 views

What characters have to be escaped to prevent (My)SQL injections?

I'm using MySQL API's function mysql_real_escape_string() Based on the documentation, it escapes the following characters: \0 \n \r \ ' " \Z Now, I looked into OWASP.org's ESAPI security library ...
5
votes
2answers
233 views

Is the at-sign (@) a valid HTML/XML tag character?

I'm doing some HTML stripping using regular expressions (yes, I know, never parse HTML with regexes, but I'm just stripping it, and I also unfortunately cannot use any external libraries). I'm using ...
5
votes
3answers
897 views

Vim show strange  characters over putty

When I am editing a file in Vim I have some lines with a bunch of  displayed. I have already checked the encoding with :set encoding It says utf8 encoding=utf8 Anybody knows where this is ...
5
votes
2answers
191 views

How do I determine if a character is within a range in Clojure?

I'm trying to write a function that checks if a character is within a certain hexadecimal range. I'm trying the code shown below: (def current \s) (and (>= current (char 0x20)) (<= current ...
5
votes
7answers
678 views

What's the proper technical term for “high ascii” characters?

What is the technically correct way of referring to "high ascii" or "extended ascii" characters? I don't just mean the range of 128-255, but any character beyond the 0-127 scope. Often they're ...
5
votes
6answers
9k views

How to save Chinese Characters to file with java?

I use the following code to save Chinese characters into a .txt file, but when I opened it with wordpad, I can't read it. StringBuffer Shanghai_StrBuf=new StringBuffer("\u4E0A\u6D77"); boolean ...
4
votes
1answer
87 views

PHP: Losing characters when concatenating long strings

My application builds a string to send to my customer containing html links in order for them to download their products. I basically loop through the orders that they have made and generate a string ...
4
votes
3answers
162 views

How to create a custom character in Turbo C++

I have come up to a point in C++ where I need a custom character. I'll try to explain what I mean to say: As you guys already know the characters in text mode are the patterns of dots, like the 'A' ...
4
votes
4answers
586 views

What characters are available on Android?

I'd like to display some special Unicode characters in my Android app. These characters are not listed on droidfonts.com but they are displayed correctly on the emulator and on my phone, but want to ...
4
votes
3answers
2k views

problem with escape characters in JAXB Marshaller

I need to serialize an XML java object to a XML file using the JAXB Marshaller (JAXB version 2.2). Now in the xml object, I have a tag which contains String value such that: "<"tagA> ...
4
votes
3answers
281 views

When accessing individual characters in a string in Perl, is substr or splitting to an array faster?

I'm writing a Perl script in which I need to loop over each character of a string. There's a lot of strings, and each is 100 characters long (they're short DNA sequences, in case you're wondering). ...
4
votes
2answers
260 views

Design guidelines for parser and lexer?

I'm writing a lexer (with re2c) and a parser (with Lemon) for a slightly convoluted data format: CSV-like, but with specific string types at specific places (alphanumeric chars only, alphanumeric ...
4
votes
4answers
1k views

PHP unserialize fails with non-encoded characters?

$ser = 'a:2:{i:0;s:5:"héllö";i:1;s:5:"wörld";}'; // fails $ser2 = 'a:2:{i:0;s:5:"hello";i:1;s:5:"world";}'; // works $out = unserialize($ser); $out2 = unserialize($ser2); print_r($out); ...
4
votes
2answers
298 views

Java char literal to C# char literal

I am maintaining some Java code that I am currently converting to C#. The Java code is doing this: sendString(somedata + '\000'); And in C# I am trying to do the same: sendString(somedata + ...
4
votes
4answers
169 views

Another C datatypes question

Well, I completely get the most basic datatypes of C, like short, int, long, float, to be exact, all numerical types.These types are needed to be known perform right operations with right numbers. For ...
4
votes
4answers
2k views

Regex to match 4 repeated letters in string using java pattern

i want to match something like aaaa, aaaad, adjjjjk. Something like this ([a-z])\1+ was used to match the repeated characters but i am not able to figure this out for 4 letters.
4
votes
8answers
33k views

How can I check if a single character appears in a string?

In Java is there a way to check the condition: "Does this single character appear at all in string x" without using a loop? Thank you,
4
votes
6answers
6k views

MySQL or PHP is appending a  whenever the £ is used

Answers provided have all been great, I mentioned in the comments of Alnitak's answer that I would need to go take a look at my CSV Generation script because for whatever reason it wasn't outputting ...
3
votes
1answer
84 views

How to send non-printing characters via SMS

Anyone know how to send non-printing characters via SMS in Android? I tried the following code but it does not work...The recipient will not receive the correct string. String msg = "Testing ...
3
votes
1answer
155 views

How to declare array of allocatable scalars in Fortran?

Allocatable arrays are possible in Fortran 90 and up. INTEGER, ALLOCATABLE, DIMENSION(:) :: test_int_array Allocatable scalars such as allocatable characters are possible in Fortran 2003. ...
3
votes
1answer
157 views

Special characters (æøå) in Tkinter, entry.get()

I have written a program in Tkinter (Python 2.7), a scrabblehelper in Norwegian which contains some special characters (æøå). Which means my wordlist (ordliste), contains words with special ...
3
votes
2answers
121 views

cycle through characters in vim

I would like to create a vim macro to do next: if I type the character "a", "e", "o", "i" or "u" and press a shorctut key p.e. F12 it has to cycle through characters every time I click the shortcut ...
3
votes
3answers
81 views

Matching multiple fragments to multiple places with lengthy character

Here is my problem: data set.seed(123) randDNA = function(n) paste(sample(c("A", "C", "T", "G"), n, replace = TRUE), collapse = "") bigse <- randDNA(50000000) I want to see how ...
3
votes
3answers
132 views

The C++ Programming Language 12.7 question 2

I am doing an exercise from The C++ Programming language (page 325, exercise 12.7, question 2). It says: Implement a simple graphics system using whatever graphics facilities are available on ...
3
votes
2answers
92 views

Unicode characters for database

My database for Unicode is successfully working for storing and displaying values. But problem is with the Newline character, tab character and other character. That is it is skipping these character ...
3
votes
3answers
229 views

How to translate an unprintable string to a normal string in python?

I have a string (that originally is taken from a search result of a search engine) that contains special characters such as '\xe9' and I just want to replace those characters to normal characters so ...
3
votes
1answer
505 views

Convert special characters like ë,à,é,ä all to e,a,e,a? Objective C

Is there a simple way in objective c to convert all special characters like ë,à,é,ä to the normal characters like e en a?
3
votes
3answers
358 views

HTML special characters in CSS “content” attribute

I'm trying to add content to something before an item using the CSS :before + content: fields. I want to insert a checkmark (☑), BUT if I use that in the content option, it prints as the ...
3
votes
2answers
1k views

Remove Non English Characters PHP

how can i parse a string to remove all non english characters in php right now I want to remove things like სოფო ნი� Thanks :)
3
votes
1answer
207 views

MySQL and polish words

I have noticed a problem with "non-english" (polish) characters using MySQL. query "select 'abcde'='ąbćdę'" returns "1" and the strings are not equals ... could you help me ? :) thx!!!
3
votes
2answers
228 views

vim special character “^\”

I opened a file in VI and I see a few instances of "^\" What exactly is this character? Thanks
3
votes
4answers
1k views

What characters are widely supported in CSS class names?

As detailed here among other places, the only valid characters in a html/css class name is a-z, A-Z, 0-9, hyphen and underscore, and the first character should be a letter. But in practice, what ...
3
votes
2answers
344 views

IE6 the last three characters in a div are being repeated else where in the page? really weird

Hey, Basically i have an issues (in IE6) where the last three characters of a line of text in a div are being repeated further down the page even though they are only in the HTML once. ...

1 2 3 4 5 9