Questions tagged [letters]

251 questions
0
votes
5 answers

How to Separate Letters and Symbols from String.(Almost Done)

import java.util.Scanner; public class Separate { public static void main(String[] args) { Scanner user_input = new Scanner( System.in ); String variable; System.out.print("Enter Variable:"); variable =…
Mr.Yoso
  • 3
  • 1
  • 1
  • 2
0
votes
2 answers

a letter tree in C

I'd like to store some data associated to words composed of simple ascii letters (a-Z) The goal is to retrieve very quickly the data associated to a word in a future parsing. I though about the following structure: struct Foo { Foo *letter[26]; …
Guid
  • 2,137
  • 2
  • 20
  • 33
0
votes
1 answer

Create alphabetical Pagination in wordpress

I need to display list of names with alphabetical pagination in wordpress. Example.... when B is selected.. A B C D...X Y Z Bassil | Bastien | Belta | Billy | Bynoo and when i click A, i need only names starting with A... I found this code on…
user1870689
  • 17
  • 1
  • 2
0
votes
2 answers

How to detect lowercase letters in Python 3.2?

Okay, I'm not really getting the answers I was looking for so I'll try rewording this. I need to know if there is a function that detects the lowercase letters in a string. Say I started writing this program: s = input('Type a word') Would there…
JustaGuy313
  • 533
  • 2
  • 6
  • 11
0
votes
3 answers

css google fonts cyrillic - some letters are cut off

I've got a problem with using google fonts on website, The problems shows only if even font-size is used, Some of the letters are smaller or cut off on the top. There is no problem on google fonts website, though, if i try to use it on my server, i…
Lisunov Ilia
  • 141
  • 1
  • 4
-1
votes
3 answers

Chars scrambling (C# and Javascript)

I need to scramble chars in word. And this scrambling must not be random. In other words, each time of scrambling (on the same word) the new result must be equal to last scramble result (on the same word). Very simple example is XOR. But XOR is very…
Edward83
  • 6,664
  • 14
  • 74
  • 102
-1
votes
2 answers

How can I count letters per word in a string using dictionary? (Python)

So, I've found methods for counting the amount of words in a string and counting the amount of letters all together, but I have yet not found out how I can count the amount of letters per word in a string. Saying that the string would be f. E.x "I…
Charlotte
  • 55
  • 1
  • 2
  • 7
-1
votes
5 answers

How can I Use numbers and letters in a String -- Java

I am currently working on a java project in which I must use the cards of a normal deck. I would like to make a String Cards to hold the value of the different cards. I started with this. String Card = "12345678910JQK" I realized it was not the…
-1
votes
2 answers

JS: How to count in letters

I want to be able to count in base 26, but only with the letters of the alphabet. I can cover the basics like A + 1 = B and Z + 1 = AA, but i want it to work for very long "numbers" like AZZEBERBZZ Currently i have the following code in…
JustAnotherDev
  • 445
  • 1
  • 4
  • 20
-1
votes
1 answer

Js animation does not work

Js animation letters does not work. Console :index.php:29 Uncaught ReferenceError: $ is not defined at index.php:29. Black letters without animation. $('.ml11 .letters').each(function(){ …
-1
votes
1 answer

Can you randomize letters in Pascal?

I am creating a rock paper scissors game in Pascal for my computer science class at university. I have the code where I type 0, 1, or 2 to represent rock, paper, or scissors and that is fully random. I was wondering if there was a way to make the…
-1
votes
1 answer

Need help making letters with asterisks

I have to make the letters "T" "O" and "L" using asterisk in c++. The code asks for a size and the letter. This is what I have so far. Honestly I a not great with loops at all, how do i make the loops? some step by step explanation would be…
-1
votes
3 answers

Mapping the inital numbers to all of letters

[On this Question they are asking assign the numbers to the letters][1] Question: Suppose that we assign the score 1 to character A, 2 to B, and 26 to Z by repeating the same rule. With the scores mapped by this rule, the sum of scores for “Luck’ is…
Nicat Muzaffarli
  • 105
  • 4
  • 10
-1
votes
5 answers

how to read letters as numbers in R

I have some data that are in a code as battle ship game, like this:A0,A1,B0,B4,K12 and I want to transform these into coordinate points. The letter should be the x-coordinate and the number the y-coordinate. Besides that, I should transform the…
NSano
  • 13
  • 1
-1
votes
1 answer

How to extract numbers in a filename from matlab?

I have to read out numbers and possibly some letters from large set of file names in a directory. The file names have a format as "aXXXX_bXX_XX_S.ext" where 'X' could be any number and 's' could be any letter or a string. How do I extract those…
NeuronGeek
  • 47
  • 5