9
votes
9answers
1k views
How can I find repeated letters with a Perl regex?
I am looking for a regex that will find repeating letters. So any letter twice or more, for example:
booooooot or abbott
I won't know the letter I am looking for ahead of time. …
3
votes
2answers
350 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
5answers
260 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 …
1
vote
2answers
1k views
Loop Through Listbox in VB.net or C# and Set Values to Label Text?
I have items in a listbox control that I would like to repeatedly (when it gets to the last one, repeat) loop through and set the text to a label.
I'm stuck, please help!
1
vote
4answers
270 views
How can I efficiently extract repeated elements in a Ruby array?
I have an array like [1,1,1,2,4,6,3,3] and I would like to get the list of repeated elements, in this case [1,3]. I wrote this:
my_array.select{|obj|my_array.count(obj)>1}.uni …
0
votes
2answers
47 views
Google Protocol Buffer repeated field C++
I have the below protocol buffer. Note that StockStatic is a repeated field.
message ServiceResponse
{
enum Type
{
REQUEST_FAILED = 1;
STOCK_STATIC_SNAPSHOT …
0
votes
9answers
262 views
C# Best way to replace x repeated tokens by one token
If I have:
Some text
More text
Even more text
What is the more elegant way to obtain:
Some text
More text
Even more text
All with knowing the number of repeated to …
