a character representing one or more of the sounds used in speech; any of the symbols of an alphabet.
Questions tagged [letter]
448 questions
8
votes
3 answers
How to compute letter frequency similarity?
Given this data (relative letter frequency from both languages):
spanish => 'e' => 13.72, 'a' => 11.72, 'o' => 8.44, 's' => 7.20, 'n' => 6.83,
english => 'e' => 12.60, 't' => 9.37, 'a' => 8.34, 'o' => 7.70, 'n' => 6.80,
And then computing the…

Matías Insaurralde
- 1,202
- 10
- 23
7
votes
3 answers
SQL query that can find Typos in Arabic language
I want to make a dictionary and I need to have a query that can find words with misspelling (I mean Typos / spelling error or typo), if the query could not find exact word then try to get with other spellings...
So what is Arabic: In Arabic there…

kiokoshin
- 73
- 3
7
votes
1 answer
Determine letter based on row and col - python
So I'm pretty upset I can't figure something this seemingly trivial out as I'm fairly well versed in Java, but anyways my professor for introduction to Python assigned us a lab where we have to create a pattern with letters based on row and column…

Sam Nayerman
- 135
- 1
- 1
- 8
6
votes
2 answers
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('
' + '%' + i + '
');
}
My idea is to use the decimal numbers of the letters…
Stefan Surkamp
- 972
- 1
- 16
- 31
6
votes
3 answers
How does one manipulate the characters of a Raku string based on case?
In Raku, a given string is to be divided into its individual characters. Each character that is an uppercase letter is to be enclosed within angle brackets, and each other character is to be enclosed within single quotes. The resulting strings…

user3134725
- 1,003
- 6
- 12
6
votes
8 answers
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 list of words as an…

Kebman
- 1,901
- 1
- 20
- 32
6
votes
5 answers
C#: I want every letter of a word to begin in a new line
using System;
class HelloCSharp
{
static void Main()
{
Console.WriteLine("Hello C#");
}
}
I want the output to be:
H
e
l
l
o
C
#
but every letter should start on a new line
I am new I know but I keep searching and can't…

test player
- 333
- 4
- 14
6
votes
3 answers
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 someway I can make this left aligned. The format of the…

Aishwar
- 9,284
- 10
- 59
- 80
5
votes
3 answers
How write all possible words in php?
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? it will look like that :…

xecute
- 61
- 3
5
votes
1 answer
Arabic letters aren't showing correctly in the plot
I used all the correct encoding and the software does work but the letters in Arabic aren't connected (most Arabic letters are connected when written next to each other)
This is how the plot shows the image
I used the python Pandas module using the…

Wonder Hunder
- 55
- 2
- 7
5
votes
3 answers
How to count Letters inside a string?
My Code:
function letterCounter(str) {
var letters = 0;
var alphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
for (var i=0; i

Blueman
- 63
- 1
- 1
- 5
4
votes
2 answers
Unsure as to why toupper() is cutting off last letter in C
So the goal of this program is to basically take a 26 letter 'key' in the terminal (through argv[]) and use its index's as a substitution guideline. So there are 2 inputs you enter in the terminal, one in the argv[] and one is just a plain…

Soccerball123
- 741
- 5
- 17
4
votes
4 answers
How can I get a list of the words that have six or more consonants in a row using the grep command?
I want to find a list of words that contain six or more consonants in a row from a number of text files.
I'm pretty new to the Unix terminal, but this is what I have tried:
cat *.txt | grep -Eo "\w+" | grep -i "[^AEOUIaeoui]{6}"
I use the cat…

doelie247
- 124
- 8
4
votes
1 answer
Creating an alphabet tracing app using flutter
I'm trying to create an app that allows kids to practice writing letters by tracing them.
I created the letters using CustomPaint but I'm not sure how to restrict the user to only draw inside the letter and give them a feedback when they draw…

Yasmin Abdelaal
- 49
- 2
4
votes
5 answers
Java SortMap Comparator to have digit keys ordered after letter keys
I need a SortedMap where the Charachter keys are sorted this way: ('A'..'Z'..'0'..'9'), so character first, then digits, all in ascending order.
This is what I have tried so far, however, the output shows it fails in returning the sorting I want,…

pppccc
- 43
- 2