Questions tagged [letters]
251 questions
0
votes
1 answer
forming words in android
I didn't know how to call it but I'll try to explain what I mean -
How can I build an interface in android that can print some letters and then the user can pick some letters and form a word or a sentence.
Example: for those of you who know "Draw…

David Lasry
- 1,407
- 4
- 26
- 43
0
votes
2 answers
Creating a phrase given a string vector of words in c++
So far my c++ program looks like this:
#include
#include
#include
#include
using namespace std;
int main() {
int i;
int maxLet;
const int NumWords = 26;
const int NumPhrase = 8;
string…

Joe
- 9
- 2
0
votes
0 answers
Is there a way to change the language in HTML's
I have a pair of , each of them should contain only words from a specific language (in my case, first should have only cyrrilic letters, and the second - only latin).
I'm wondering, is there some way, using HTML, or JavaScript…

Arno
- 356
- 5
- 18
0
votes
2 answers
Assembly. How to put letters in grahic mode?
How to put letters in graphic mode on position which I want to. Can I display letters in graphic mode or should I define it pixel by pixel in two-dimensional table?
Could you give me a example, because I am trying to write animation letters on…

kkkkk
- 572
- 1
- 10
- 21
0
votes
0 answers
ROC : change the size of a letter which is in an int[][] (java)
I am trying to make an ROC program in java.
My problem is that when i want to normalize ( change the size of the letter thanks to a method which uses the matrix of pixels ).
My letters are centered in a box of pixels.
My code isn't working. I cannot…
0
votes
5 answers
Changing digits in mysql to letters to echo in php
In regard to a previous question I just managed to get solved by a very generous person. I have but 1 more issue.
I'm echo'ing the Online Users logged into my Website; however I also want to echo their Gender.
Now the problem is, the Gender's are…

Arylis
- 5
- 1
- 4
0
votes
1 answer
Relating a letter to a value that's stored in an array
I have a problem, I need to relate a value to a letter. The values come in an array. For example:
Value vector -> [1,2,3,1,2,5,1,...,8]
I need an idea to make the first number of that vector be linked to the letter "a", the 2nd number to the letter…

Blackfing
- 5
- 5
0
votes
1 answer
I want to stop non-alphabetical characters been put into the input
Currently I have a piece of javascript that stops the form been submitted if the inputs are empty but I want to make the script also stop non-alphabetical characters been put in too.
Here is the script
`function checkFormWhole(){
//var…

user3103598
- 185
- 1
- 1
- 10
0
votes
1 answer
Library or code to convert digit in letters
Could you suggest me a code or a library (possibly java) to convert digits (e.g. 24) in letters (e.g. twenty-four)? Obviously I need to change locale (from English to Italian).

Fabio
- 33
- 1
- 4
0
votes
2 answers
C# Converting/Splitting a String with numeric and letters
I tried to split a String into a parts array and combine them at the end into a result String.
But while I tested a little bit, I get a message.
By pressing convert_click:
"NullRefenceException was unhandeled"
Object reference not set to an instance…

Knolle
- 1
0
votes
2 answers
Changing all lowercase letters in input gradually to uppercase to get all the combinations in Batch
I've got this problem, I want to make some kind of programm, which could change all the words to uppercase in all combinations, like (input = something -> echo something; Something; sOmething; ... sOMeTHIng; sOMeTHiNg;... SOMETHING)
Any ideas ?
user2460469
0
votes
1 answer
Convert special letters to ascii letters in java
I try to convert a String with special letters (such as ä,à,è,ç,î,ñ.ö ect.) to ascii letters.
My example:
String newName = oldName.replaceAll("\\s","").replaceAll("[^a-zA-Z0-9]", "");
This works fine, except that all special letters disappear...
Is…

muffin
- 1,456
- 4
- 21
- 44
0
votes
1 answer
C# console calling SQL - bad execution while string contains lithuanian letters
My C# Console Applcation:
1:
string CE_ParentName_ = CEReader5[0].ToString(); // get string with lithuanian letters for example "Konsolės".
if I use Console.WriteLine() , I get correct output in console.
2:
readname.CommandText = "SELECT [ID] FROM…

Arunas
- 3
- 2
0
votes
2 answers
Check if word exists
the program i'm trying to make is thus:
a program that makes three letter words in format from letters input by user. The same letter cannot be used more than once unless the user has used it more than once, and the same word cannot appear…

ZeW
- 163
- 2
- 19
0
votes
2 answers
Changing multiple elements at once in Python
I'm wondering how you can write an algorithm to switch multiple letters at once. What I am seeking is a way to change each (left-hand typing) Q or W or E or R or T in a (right-hand typing) Y or U or I or O or P without messing with the white spaces…

Denny Nuyts
- 165
- 2
- 12