Tagged Questions

3
votes
2answers
925 views

Regex: How to match a string that contains repeated pattern?

Is there a regex pattern that will match a string that contains repeated pattern, e.g.: "a"|"b","c"|"d",...,"y"|"z" Do you have any idea? Thanks.
1
vote
1answer
59 views

Python - finding words based on repeated characters specified in a string

Let's say I have a list of words: resign resins redyed resist reeded I also have a string ".10.10" I need to iterate through the list and find the words where there are repeated characters in the ...
1
vote
2answers
43 views

Simple way to identify repeated strings in an array? (PHP)

I have an array with values $somearray = array('car','bike','legs,'car'). I'd like to find out which of these values in $somearray are repeated and pick out the index. In this example the answer would ...
1
vote
5answers
645 views

How to find a repeated string and the value between them using regexes?

How would you find the value of string that is repeated and the data between it using regexes? For example, take this piece of XML: <tagName>Data between the tag</tagName> What would be ...