Questions tagged [alphabet]
319 questions
0
votes
2 answers
iOS change keyboard button
Is that possible to change the + * # button to Next button? And remove the alphabets from number (2 to 9)?
NOTE: this is UIKeyboardTypePhonePad

Js Lim
- 3,625
- 6
- 42
- 80
0
votes
1 answer
Python 3 - How do I replace all letters in a sentence with their respective keys in a dictionary
So I'm creating a program that allows you to set each letter in the alphabet to another one using a dictionary. It then lets you input a sentence, which it then codes using the code you previously set. So far, I've completed (or I think I've…
0
votes
0 answers
LoggerFactory ArrayUtils Random
this one does not fly for me:
http://pastebin.com/Mctnidng
It was elaborated in this forum under a different thread. I've divided it into two files
AlphabetHelper.java
AlphabetHelperTest.java
java -version
java version "1.6.0_18"
Java(TM) SE…
0
votes
1 answer
how do i get the numeric representation of a character in javascript?
I'd like to get a javascript numeric representation for a letter to do some relative manipulation i.e. in pseudocode to conduct an operation like 'a'.getNumberRep - 'b'.getNumberRep.
Best way to do this in js?

citronic
- 9,868
- 14
- 51
- 74
0
votes
1 answer
Modified Vigenere Cipher in python - Alphabet
This is what I have to do:
Write a script in Python that is an implementation of a version of the Vigenere cipher for English text. Your script should distinguish lowercase and uppercase letters (i.e., the encryption key and the plaintext are…

Marcos Guimaraes
- 1,243
- 4
- 27
- 50
0
votes
1 answer
Determining number of states in a DFA
For Σ = {a,b,c,d,e,...,z}, consider the set L of words w such that the last symbol of w has not appeared before. For example, the words apple, google, k, and ε are in L, but the words potato, and nutrition are not in L. Suppose we want to construct…

Murphy4
- 1,499
- 2
- 15
- 22
0
votes
2 answers
Still not working- function: letter to next letter(i.e. a->b) and capitalize vowels
I keep getting "Type Error: str.join is not a function. This code is supposed to take a string input and make each letter in the input the next letter(i.e. a->b,z->a) and capitalize every vowel. Does anyone know why it's still wrong?
str =…

Colin Michael Flaherty
- 786
- 2
- 7
- 15
0
votes
2 answers
Program to make vowels in string uppercase and change letters to next letter in alphabet(i.e. a->b) not working
how can I solve this. It is supposed to make all vowels in str capitalized and to change each letter in the alphabet to the next letter in the alphabet(i.e. a -> b, or z->a). It keeps returning "str.join is not a function". Any Help? By the way,…

Colin Michael Flaherty
- 786
- 2
- 7
- 15
0
votes
2 answers
Powershell-File names in a directory with same letters
I need to write a powershell script, which list file names that contains the same letters, only difference is the sort of the letters.
My first oppinion is to sort the letters in alphabet, and if it fit, then they match, but i need some help for do…

user3063349
- 96
- 1
- 10
0
votes
9 answers
How to Detect the Vowels and Consonants in my program
String text;
System.out.print ("Enter a String:");
text = console.nextLine();
int spaces = 0;
int consonants = 0;
int vowelcount = 0 ;
for (int index = 0; index < text.length(); index++) {
char letters =…

user3020412
- 31
- 1
- 1
- 2
0
votes
1 answer
How to show directory listing in alphabets to show directory in its Letter
I have an array that already contains all it's values in alphabetical order:
Directory Listing:
Ahha
ah?
I just want to list the first letter each starts with above it like so:
A
___________________
Ahahhaa
Ah?
Like this
Here is code.
$alphabets…

Jappy God
- 50
- 8
0
votes
6 answers
How to print a through z using a recursive method
Hi new to java here and I need to print the alphabet from a to z and in reverse from z to a. I need to do this using a recursive method.
class Alphabets{
public static void main(String args[]){
char ch;
for( ch = 'a' ; ch <= 'z' ; ch++ )
…

user2914418
- 41
- 1
- 4
- 6
0
votes
2 answers
Nested loop rectangle *Makes a rectangle with different letters on each line*
The output should be
AAAAAAAAA
BBBBBBBBB
CCCCCCCCC
DDDDDDDDD
EEEEEEEEE
FFFFFFFFF
GGGGGGGGG
HHHHHHHHH
IIIIIIIII
JJJJJJJJJ
My code is this:
char let = 65;
for (int i = 0;i < 10; i ++)
{
for (int x = 0; x < 10; x…
0
votes
1 answer
Alphabetic Counter utilizing string arrays
public class AssignmentChapter9
{
public static void main(String[] args)
{
String words = Input.getString("Please enter a series of words with the spaces omitted.");
String alphabet = "abcdefghijklmnopqrstuvwxyz";
…

gamer8756
- 9
- 3
0
votes
2 answers
C - Sort char string in array to equal char user input
I am having writer's block at the moment.
What I want is to have a sort that will check if newWord equals to wordInput, and if it doesn't, it will keep swapping around letters until it does. For example, let's say wordInput is poop and newWord is…

chakolatemilk
- 833
- 9
- 21
- 31