Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
628 views

How to access Letter Recognizer API in Android?

I am creating a gesture application. In the Gesture class docs http://developer.android.com/reference/android/gesture/Gesture.html) it reads: "A user-defined gesture can be recognized by a ...
8
votes
5answers
1k views

One letter game problem?

Recently at a job interview I was given the following problem: Write a script capable of running on the command line as python It should take in two words on the command line (or optionally if ...
5
votes
10answers
4k views

Algorithm problem: letter combinations

I'm trying to write a piece of code that will do the following: Take the numbers 0 to 9 and assign one or more letters to this number. For example: 0 = N, 1 = L, 2 = T, 3 = D, 4 = R, 5 = V or F, 6 = ...
4
votes
1answer
53 views

Convert Number to Unicode sign

I have to print out the letters from A to Z each for itself. So I tried the following: for(var i = 65; i < 91; i++) { $('#alphabet').append('<div class="letter">' + '%' + i + ...
4
votes
5answers
178 views

How write all possible words in php? [closed]

Possible Duplicate: Generate all combinations of arbitrary alphabet up to arbitrary length I'm trying to make write all possible words of 10 letters(zzzzzzzzzz) in php. How can I do that? ...
4
votes
8answers
300 views

Find the word with most letters in common with other words

I want Perl (5.8.8) to find out what word has the most letters in common with the other words in an array - but only letters that are in the same place. (And preferably without using libs.) Take this ...
4
votes
2answers
2k views

Latex Letter: From Address Left aligned

This is my first time using Latex to write a letter. I am using the letter class. When I use: \address{100 From Address \\ City, State \\ Pin} The from address becomes right aligned. Is there ...
3
votes
3answers
614 views

How to search fast in list with 40 milions words?

My today question is: how to search fast in list which contains 40 milions words. I need find words which contains at least 4 letters which i specified before the proceed. Example: in list there are ...
3
votes
9answers
948 views

Count letters in a word in python debug

I am trying to count the number of times 'e' appears in a word. def has_no_e(word): #counts 'e's in a word letters = len(word) count = 0 while letters >= 0: if ...
3
votes
3answers
454 views

Android Immediate Auto Complete

Greetings! The android auto complete only starts after two letters, how can I make it so the list appears when the field is just selected? Thanks
3
votes
6answers
3k views

Generate a random letter in Python

Is there a way to generate random letters in Python (like random.randint but for letters)? The range functionality of random.randint would be nice but having a generator that just outputs a random ...
2
votes
2answers
133 views

Sicstus Prolog - Weight of a word

I've got a problem about how to weigh a word. Every single letter in a word has specific weight, I need to calculate the totol weight of the word. For example: A-E = 1, F-O = 2, P-Z = 3. If the ...
2
votes
4answers
345 views

isLetter with accented characters in C

I'd like to create (or find) a C function to check if a char c is a letter... I can do this for a-z and A-Z easily of course. However i get an error if testing c == á,ã,ô,ç,ë, etc Probably those ...
2
votes
1answer
138 views

Set the last letters of a string equal PostgreSQL

I have a column 'names' and 'ids' in table "OG" and want to find those names where the last letter is different and the total edit distance is two. So far I have: SELECT z1.names as names1, z2.names ...
2
votes
3answers
499 views

Cipher text Letter Freq Substitution: Comparing 2 dictionaries' dict keys by value and altering a text

I've had a look at similar topics, but no solution I can find exactly compares to what I'm trying to achieve. I have a cipher text that needs to undergo a simple letter substitution based on the ...
2
votes
1answer
320 views

Java JSpinner Prevent Letter Insertion

A JSpinner is used to store a number in my application (with a SpinnerNumberModel). As expected, the spinner doesn't allow invalid characters (letters, symbols, etc.) to be stored. However, those ...
2
votes
3answers
2k views

Automatically capitalize first letter of first word in a new sentence in LaTeX

I know one of LaTeX's bragging points is that it doesn't have this Microsoftish behavior. Nevertheless, it's sometimes useful. LaTeX already adds an extra space after you type a (non-backslashed) ...
2
votes
1answer
1k views

Latex letter: Address right aligned

I am using Latex letter class, and would like the address to be right justified. The default is for it to be in a right aligned block, justified to the left. I am happy to change the letter.cls ...
2
votes
6answers
3k views

Convert Number to Corresponding Excel Column

I need some help in doing a logic that would convert a numeric value to corresponding MS Excel header value. For example: 1 = "A" 2 = "B" 3 = "C" 4 = "D" 5 = "E" ......... 25 = "Y" 26 = "Z" 27 = ...
2
votes
2answers
719 views

How does one format a letter in the Memoir document class for LaTeX?

If you have a traditional letter with content like-so. From Someone 50 Example Drive Random City, ZIP Country Tel: 444-555-6666 July 30, 2009 To Somebody 51 Example Drive Random City, ZIP Country ...
1
vote
2answers
52 views

How to use vertical bars “|” (pipes) in a title, header as a string?

A page has the title "Systemadministrator (m/w) | Dresden". I use a vertical line (pipe) letter. When I render the title in typo3 (via dataWrap) it will only show "Systemadministrator (m/w)Dresden" ...
1
vote
5answers
81 views

Determine if char is a num or letter

Having a char in C like 'a' or '9', how do I determine if it's a number of a letter? is it better to use: int a = Asc(theChar); or does this also work: int a = (int)theChar
1
vote
2answers
59 views

MySQL/PHP Autosuggest

In my MySQL DB I have a list of terms like this (With First letters Capital and most of the time plurals) Hairdressers Restaurants Beauty Salons Furnitures For Restaurants On my website I have a ...
1
vote
3answers
100 views

Regex too have certain letters and at least one of a certain group of letters

Can someone help me with a regex statement for finding a statement using this rule? The word needs to have the letters "J, U, G" (just the letters not the order) and at least one of these letters : ...
1
vote
1answer
71 views

letter of demand or let it go - aged care software [closed]

I'm not sure if this is the place to ask for advice, but here goes. About 2.5 years ago I wrote an application for an aged care group in collaboration with the clinical director of an aged care ...
1
vote
3answers
888 views

How to target specific letter/word with jquery?

As a mere example, I want to apply the class "fancy" to all occurrences of the sign "&amp;" in the document. The CSS: .fancy { font-style: italic; } So a text that looks like this: Ben ...
1
vote
3answers
633 views

How to get a random letter from a list of specific letters?

I've started writing some JAVA code and now I want to get a random letter from list of letters given so what should I use for this.
1
vote
1answer
149 views

There exists any ASP.NET News letter Integration API

Implementing constant contact in asp.net
1
vote
3answers
1k views

How do I get the substed drive letter in Perl?

I need to get substed drive letter in Perl. Could anyone kindly help me? $ENV{SYSTEMDRIVE} does not work; it gives me real logical drive letter, not the substed one. thanxalot for your help
0
votes
0answers
21 views

How do I set the height of a character in Latex? [closed]

I am trying to write out a chemistry diagram (not a condensed equation, but the actual letters connected with lines). The only way I can think of is to draw the lines in with another application such ...
0
votes
6answers
103 views

Determine if string starts with letters A through I

I've got a simple java assignment. I need to determine if a string starts with the letter A through I. I know i have to use string.startsWith(); but i don't want to write, if(string.startsWith("a")); ...
0
votes
1answer
139 views

Raphael — Changing the letter color of text string

(using Raphael_2.01, WindowsXP, Firefox8.0.1) Hello, I'm trying to change the letter color of text by referring to "Drawing Text" of http://www.html5rocks.com/en/tutorials/raphael/intro/ . I can ...
0
votes
2answers
49 views

In JavaScript, how do I detect whether or not the input contains letters?

My code is below, it outputs what the user is typing in the text box. It should output an error message if the user puts anything other than a number. I'm confused as to how to do this, though. Quite ...
0
votes
1answer
48 views

Extracting first letter from specific vector in dataset in R

I am working in R with a babyname dataset. The data set contains a column called name: babies1900$name. I know how to extract the last letter from each row in vector name. last.letter.1900 <- ...
0
votes
2answers
80 views

Take only one character from user in Android

I want user to enter just one character. I thought to make buttons for every letter, but this is useless. Could you recommend something to overcome this problem? Thanks in advance..
0
votes
6answers
132 views

PHP sort array using specific letter

I have an php array like below: Array ( [0] => Array ( [value] => 5 [label] => Akon ) [1] => Array ( [value] => 6 [label] => Angel ) [2] => Array ( [value] => 7 [label] ...
0
votes
3answers
1k views

JQuery Substr start at letter

Is it possible for a substr to start at a letter with jQuery? The following does not work: var naam = cid.substr('|'); The | is there I want it to start. It works now, one of the solutions is: ...
0
votes
3answers
512 views

Regex capitalize first letter every word, also after a special character like a dash

I use this #(\s|^)([a-z0-9-_]+)#i for capitalize every first letter every word, i want it also to capitalize the letter if it's after a special mark like a dash(-) Now it shows: This Is A Test ...
0
votes
1answer
125 views

Reading characters and checking if they're a number

I am trying to get a method that checks if character after the symbol & is a number or a letter; if a number, it is translated into binary; and if it is a letter, it is set to 16 and is ...
0
votes
1answer
297 views

Android accelerated scroll “first letter”

How can I use "first-letter" feature when user performs accelerated scrolling? See the video @ 0:20
0
votes
0answers
5 views

access and printing data from table tool

Is there an alternative to MS Word mail merge for filling letter templates with access data and printing? Even the database doesn't have to come from access, but need to have a way to import the ...
0
votes
0answers
121 views

Source code for tracing a letter

Hello All I am a newbie and can anyone please let me know if there is any place where I can find source code for tracing letters. Thanks newbie What I meant by tracing a letter is that I have ...
0
votes
2answers
422 views

Convert numeric to letter

I'm programming an invoice script. I'm looking for a php script that convert number to letter. Exemple, the invoice show this value : 155€ The script put automatically: ONE HUNDRED FIFTY FIVE Any ...
0
votes
1answer
144 views

What should i use to generate and print letters

im in the process of building a system that generates printed letters (around 1000 a day) that get sent to our customers and was wondering what are some good tools to use for this. So far i have ...
-1
votes
4answers
108 views

How to eliminate items from listbox when textbox changed

I wanna make a small code block about c #. first think a listbox with elements. then think a blank textbox. when I write a letter to textbox(dont think just letter, think about a word ,I split it ...
-1
votes
4answers
72 views

What is the encoding for the character č for a MYSQL3 database?

I have here an old MySQL3 database with an encoding problem. Since the system should be replaced I need a fix. I have to input the character č. But what is the encoding for that? For ä -> ä ö -> ö ...
-2
votes
2answers
340 views

python - Letter Frequency

Write a Python function called hist() which takes a string as an argument, and creates a visual representation of the frequency of its alphabetic letters by printing each letter in uppercase the ...
-3
votes
2answers
59 views

PHP Date show the first letter of the month only? [closed]

Possible Duplicate: Getting the first character of a string with $str[0] I'm currently displaying monthly archives on my site. it works fine, but I want to show only the first letter of the ...
-8
votes
1answer
225 views

How to check how many letters are in a string in java?

a) How do you check how many letters are in a Java string? b) How do you check what letter is in a certain postition in the string (i.e, the second letter of the string)?