Search Results

2
votes

How do you find the difference between 2 strings in PHP?

This is going to give you a headache unless you define your porblem more clearly to start! Let's assume that str1 is "Amanda and Amy", and str2 is "Amanda and Amylase Amy". Is your function …
0
votes

In python how to I verify that a string only contains letters, numbers, underscores and dashes?

You could always use a list comprehension and check the results with all, it would be a little less resource intensive than using a regex: all([c in string.letters + string.digits + ["_", "-" …
4
votes

How do I determine if a random string sounds like English?

It's quite easy to generate English sounding words using a Markov chain. Going backwards is more of a challenge, however. What's the acceptable margin of error for the results? You could always hav …
3
votes

Stripping non printable characters from a string in python

As far as I know, the most pythonic/efficient method would be: import string filtered_string = filter(lambda x: x in string.printable, myStr) …
3
votes

JavaScript string concatenation

In the words of Knuth, "premature optimization is the root of all evil!" The small defference either way will most likely not have much of an effect in the end; I'd choose the more readable one. …