Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
106 views

OrderBy with Swedish letters

I have a list of my custom class Customer and I want to sort them alphabetically by Title. So I wrote myList = myList.OrderByDescending(x => x.Title).ToList<Customer>(); Now the problem ...
6
votes
7answers
496 views

What is the best way to match only letters in a regex?

I would really like to use \w but it also matches underscores so I'm going with [A-Za-z] which feels unnecessarily verbose and America centric. Is there a better way to do this? Something like [\w^_] ...
6
votes
8answers
1k views

How do I get the set of all letters in Java/Clojure?

In Python, I can do this: >>> import string >>> string.letters 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' Is there any way to do something similar in Clojure (apart ...
5
votes
6answers
4k views

Regex - Match only letters, numbers, and one space between each word

How can I create a regex expression which will match only letters and numbers, and one space between each word? Good Examples: Amazing Hello Beautiful World I am 13 years old Bad Examples: ...
4
votes
3answers
1k views

simplest, shortest way to count capital letters in a string with php?

I am looking for the shortest, simplest and most elegant way to count the number of capital letters in a given string.
3
votes
4answers
126 views

Generating letters in Java

I need to generate some business letters in java, with some dynamic information like address, to,from etc. Remaining letter content would be the same. These letters are not displayed to the user but ...
3
votes
4answers
129 views

Problem with algorithm to shorten sentences

I have a webpage which displays multiple textual entries which have no restriction on their length. They get automatically cut if they are too long to avoid going to a new line. This is the PHP ...
3
votes
4answers
480 views

Bash script to find the frequency of every letter in a file

I am trying to find out the frequency of appearance of every letter in the english alphabet in an input file. How can I do this in a bash script?
3
votes
4answers
143 views

How to separate String into chars

public static string kw; public String parse(String keyword) { this.keyword = keyword; char[] letters = keyword.ToCharArray(); string g; long length = ...
3
votes
7answers
211 views

How to go from list of words to a list of distinct letters in Python

Using Python, I'm trying to convert a sentence of words into a flat list of all distinct letters in that sentence. Here's my current code: words = 'She sells seashells by the seashore' ltr = [] # ...
2
votes
3answers
170 views

How check if letters are in string?

It quite hard question to ask but I will try. I have my 4 letters m u g o . I have also free string word(s). Let'say: og ogg muogss. I am looking for any wise method to check if I can construct ...
2
votes
3answers
126 views

Stripping non A-Z characters in vector in R

I have a vector of usernames that have non A-Z characters in them. I want to be able to strip those characters out. I was told to use letters vector but y =x[letters] doesn't seem to work. Thanks
2
votes
3answers
233 views

counting letters for each word in a text with Perl

i am a beginner in programing and i am trying to write a program wit perl which should returns the frequency of all words in the file and the length of each word in the file (not the summe of all ...
2
votes
3answers
416 views

Perl - How do I insert a space between an alpha character and a numeric character?

This is a continuation of my original question: Perl- How do I insert a space before each capital letter except for the first occurance or existing? I was able to achieve a desired result of ...
2
votes
2answers
77 views

replacing letters (from a phrase) with images

$q = "my phrase with special chars like úção!?"; while ($i < strlen($q)) { echo '<img src="'.$q[$i].'.png" />'; $i++; } i also tried with switch/case but when i have chars like ç Ç ã â i ...
2
votes
4answers
520 views

what's a good enterprise document generation solution? (SQL Server, .NET)

I wonder what "the big guys" use to generate documents. Like credit card statements, insurance documentation, etc. We're investigating changing solutions. Here are the two that I know of: SSRS ...
2
votes
4answers
761 views

generating random alphabets with some alphabets having a higher frequency of occurence(vc++6.0)

basically i have a function that generates random alphabets .i have done this using the rand() function to generate numbers and them converted them to their corresponding ascii equivalents. but i want ...
1
vote
1answer
93 views

Comparing the contents of two lists in prolog

I am having some kind of homework and I am stuck to one point. I am given some facts like those: word([h,e,l,lo]). word([m,a,n]). word([w,o,m,a,n]). etc and I have to make a rule so that the user ...
1
vote
1answer
84 views

Java lithuanian letters

i have DB where some names are written with Lithuanian letters, but when I try to get them using java it ignores Lithuanian letters DbConnection(); ...
1
vote
3answers
69 views

Regex - With Space and Special Characters

I'm using the following Regex ^[a-zA-Z0-9]\s{2,20}$ for input - Letters A - Z - Letters a - z - Numbers 0 - 9 The input length must be a least 2 characters and maximum 20 characters. I also want to ...
1
vote
3answers
123 views

Function to return only the capital letter(s!) at the beginning of a string?

I'm trying to retrieve the first couple of capital letters from a string in PHP, but I'm not sure if there's a specific function to do this. Should I perhaps resort to using regex? If so, how? Here's ...
1
vote
1answer
80 views

how to determine the number assigned to each letter in a cryptarithm?

I have an assignment that needs to solve a cryptarithm. But I cant understand the algorithms that I saw in the internet. Could anybody explain how to do this in simple words?
1
vote
3answers
229 views

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 ...
1
vote
4answers
465 views

Capital letters in class name PHP

I have two classes in my system. One is called file and second is File. On my localhost when i instantiate file i get file object, but my friend running the same script gets object of File like the ...
1
vote
2answers
363 views

Lowercase letters tail height (g, j, p, q, y)

This question is a little bit odd. I have to make sure of the distance between letters above and below. Now when calculating a letter height in Pixel, say font size = 14px does this mean my alloted ...
1
vote
1answer
348 views

jquery arabic letters support

hi guys try this code it works very smooth Html <html><body> <div id="container"></div> </body></html> Jquery $('<div id="footer"><p>جميع الحقوق ...
1
vote
8answers
616 views

python: How do I assign values to letters?

I want to assign a value to each letter in the alphabet, so that a -> 1, b -> 2, c -> 3, ... z -> 26. Something like a function which returns the value of the letter, for example: value('a') = 1 ...
1
vote
1answer
206 views

Function calculating the probability of a letter in an sentence

I have a function that is supposed to calculate the number of times a letter occurs in a sentence, and based on that, calculate the probability of it occurring in the sentence. To accomplish this, I ...
1
vote
3answers
332 views

R: How to get the index of a letter from a list A-Z?

I want to get the index of a particular letter, e.g. > match(LETTERS,"G") [1] NA NA NA NA NA NA 1 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Gives me that the letter exists, ...
1
vote
4answers
111 views

How to change String value comparison

In my code I need to compare string letters but my problem is that lower case letters are greater than upper case letter. For example Z < a. How could I implement this in my code ? Thanks
0
votes
2answers
84 views

counting letters (only letters) in a long string (python 2.72)

i need to write a function which receives a long string, and puts into a dictionary each letter, and it's it's appearance frequency in the string. iv'e written the next function, but the problem it ...
0
votes
6answers
66 views

Python Removing Letters From a String

This is a homework assignment. I just need a nudge. I'm trying to create a loop in which the letters of a string will be removed when it is beyond a certain number. Example: Enter Your String: ...
0
votes
1answer
36 views

captcha modify six letters

i have following captcha code: <?php class CaptchaView extends View { private $fontsDir = 'captcha_resources/fonts/'; private $backgroundsDir = 'captcha_resources/backgrounds/'; ...
0
votes
1answer
61 views

how do you make a password generator in command prompt that uses letters?

I know how to create a password generator in command prompt but it only uses numbers. Is there a way to make it generate letters as well? for example, ASDE-DASD-DWAS-AWDS.
0
votes
3answers
70 views

PHP making first letter an image

I need an HTML-safe function which will change a first letter of the content to the image source. So if my content will be: "Hello World!" the output will look like: "<img ...
0
votes
5answers
172 views

Linq query - find strings based upon first letter b/w two ranges

We have a list containing names of countries. We need to find names of countries from list b/w two letters. Like names of all countries with name starting b/w A-G and so on. We create following linq ...
0
votes
1answer
48 views

Last two alphabets of a link are showing twice in internet explorer

The Last two alphabets of a link placed in footer are showing twice/repeated in Internet explorer from nowhere.... I am using div based design in xhtml. How could I get rid of this error?
0
votes
3answers
168 views

Python search HTML document for capital letters

So I have all these html documents that have strings of capital letter in various places in alt tags, title tage, link text...etc. <li><a title='BUY FOOD' ...
0
votes
1answer
77 views

Regex to allow apostrophe only for words ending with s

I'm using this Regex ^[a-zA-Z0-9]{2,20}$ to allow the following rules: - Letters a-z - Letters A-Z - Numbers 0-9 - Input length must be at least 2 characters and maximum 20 characters. I also want to ...
0
votes
0answers
64 views

Lithuanian unicode letters and Django templates

I have problem with specific lithuanian letters like ą,č,ę,ė,į,š,ų,ū,ž and Django templates. I want to compare if two values are identical. I send variable key = u'Grūdai' or 'Grūdai' (no matter ...
0
votes
2answers
156 views

Creating a word from a random set of specific letters

I'm trying to generate a word with a specific set of letters. The first letter of the word must contain the letters P,G,T,K the second A,E,I,O,U I have tried generating them with the code blow with ...
0
votes
0answers
16 views

Need help figuring out how to combine some text with some letters

ok listen.... there are alot of you guys that know coding and such... i just want to know how to take a letter with some symbols , kind of like N¯°±²³ and make it all into one letter that looks like ...
0
votes
2answers
227 views

IE 8 transparent div with content on top

Hi all I'm currently having some issues with IE < 9 and transparency rendering. I have a transparent div and some text over it. it looks fine in Firefox Chrome and IE 9. however, the older versions ...
0
votes
6answers
219 views

Condense list into string : ['z','y','x'…] -> 'zyx…' ? Python (2.7.1)

If I have list='abcdedcba' and i want: a=z, b=y, c=x, d=w, e=v so it would translate to: translate='zyxwvwxya' How would I do this? If I construct a dictionary >>> ...
0
votes
1answer
346 views

PHP - MYSQL Search Engine - Matching specific letters from a word in a search box

I am trying to make search engine to match some specific letters from the end of the word I input in a search box, or the first few letters in the the beginning of a word, that I input in the search ...
0
votes
0answers
111 views

Image tracing in iOS

We are planning to develop a letter tracing app for children which will allow learning letters of a foreign language (not supported by iphone) - we have 50 letters a total. There are a lot of letter ...
0
votes
5answers
257 views

Using php to increment letters while cycling through capitilisations

I am working on a project where I need to cycle through letters something like this: a,A,b,B...z,Z,aa,Aa,aA,AA,bb...zz,ZZ... in php. Is it possible to do this in a scalable way?
0
votes
4answers
375 views

Check if a string contains letters and cancel them

I've got an UITextField and I need to allow only numbers, comma or point typing in this field. How can I check if this string contains any character instead of these above and how can I ...
0
votes
3answers
407 views

Project Euler Problem 17 - What's wrong?

I decided to try project euler problem 17 today, and I quickly wrote a pretty fast code in C++ to solve it. However, for some reason, the result is wrong. The question is: If the numbers 1 to 5 are ...
0
votes
1answer
58 views

Simple regex problem!

I want to remove everything from a string except numbers, letters, _ (underscore) and : (colon) It's PREG and I've only come across #\W#, but it removes the : (colon). Any help is appreciated, ...

1 2