Tagged Questions
The repeated tag has no wiki summary.
14
votes
10answers
4k 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.
This is a question ...
4
votes
4answers
2k views
Regex to match 4 repeated letters in string using java pattern
i want to match something like aaaa, aaaad, adjjjjk.
Something like this ([a-z])\1+ was used to match the repeated characters but i am not able to figure this out for 4 letters.
4
votes
7answers
1k 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}.uniq
But it is ...
3
votes
6answers
208 views
Cutting down repeating code in c# Class
This is a wrapper for an API I'm working on, am I doing it sort of right? I'm not particularly fond of all the repeating code in the constructor, if someone can show me if I can reduce that it would ...
3
votes
2answers
2k views
reading a csv file with repeated row names in R
I am trying to read a csv file with repeated row names but could not. The error message I am getting is Error in read.table(file = file, header = header, sep = sep, quote = quote, : duplicate ...
3
votes
1answer
662 views
utility to find longest possible repeated strings
Is there any tool or utility or perl/python script that can find longest repeated substrings in a large text file and print those patterns and the number of times each pattern occurs?
3
votes
2answers
922 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.
2
votes
2answers
82 views
Removing repeated obs data if n Obs < x in R
I have a repeated measures data set. I need to remove all Participants where the number of observations for that individual is less than 3. What is the best way to do this?
x <- c(9, 9, 9, 11, 11, ...
2
votes
3answers
82 views
Identifying sequences of repeated numbers in R
I have a long time series where I need to identify and flag sequences of repeated values. Here's some data:
DATETIME WDIR
1 40360.04 22
2 40360.08 23
3 40360.12 126
4 40360.17 126
5 ...
2
votes
5answers
66 views
Print repeated numbers only one time in c#
I have an array with "n" numbers and I need to print all repeated numbers only one time
i made this code, but something is wrong
for (int i = 0; i < numbers.Length; i++)
{
...
2
votes
2answers
371 views
PHP : Find repeated words with and without space in text
I can find repeated words in text with this function:
$str = 'bob is a good person. mary is a good person. who is the best? are you a good person? bob is the best?';
function repeated($str)
{
...
2
votes
5answers
69 views
Delete repeated results from MySQL query
A MySQL query retrieves:
totalpoints -- name
55 -- John Doe
55 -- John Doe
55 -- John Doe
55 -- John Doe
55 -- John Doe
21 -- Jean London
21 -- Jean London
13 -- Mark Derry
13 -- Mark Derry
13 -- ...
2
votes
2answers
102 views
Better way of coding this if statment?
I have another question for you very helpful people. I use a lot of if statements many of which are just repeated and im sure could be shortened. This is my current bit of code
if ...
2
votes
5answers
185 views
Use regex to find out if a string is just a single repeated character
I'm writing a PHP script and I'm at this point where I need to know if a string consists of one character that's just repeated. The character is even a specific one: it's z.
For example, I want to ...
2
votes
6answers
305 views
Find a repeated numbers out of 3 boxes
I have 3 boxes, each box contain 10 piece of numbered paper (1 - 10) but there is a number the same in all 3 boxes eg: box1 has number 4 and box2 has number 4 and box3 also has number 4. How to find ...
2
votes
5answers
228 views
Removing duplicates without overriding hash method
I have a List which contains a list of objects and I want to remove from this list all the elements which have the same values in two of their attributes. I had though about doing something like this:
...
2
votes
2answers
1k 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 = 2;
}
...
2
votes
2answers
3k 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
3answers
440 views
Symfony2 form repeated element custom labels
I'm using Symfony2 and CraueFormFlowBundle to create a multi-step form. Everything is going well except for the my repeated email field. I cannot, for the sake of me, find how to put the labels I ...
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
2answers
155 views
FormClosing delegate event problem
I have two forms named 'mainForm' and 'addRslt'. The idea is when users click on a button in mainForm, the addRslt form will Show() and then user will populate a TreeView. Now when user WANT to CLOSE ...
1
vote
2answers
109 views
SQL retrieve yearly repeated event
How to write a sql statement to retrieve repeated yearly event, which mean retrieve all the event regardless year only match with month and date.
Select * from Event where [date] = date ?
1
vote
1answer
119 views
Repeated TableViewCells show up when I try to reuse tableviewcells… how do I get the new ones to show?
I am having a problem with my code skipping over the if(cell == nil) after about nine trips through the cellForRowAtIndexPath. Then items in my table start repeating and do so every nine items. When I ...
1
vote
4answers
1k views
Java: Execute a method at a specified time interval
I have this problem.
I need to have a method repeated endlessly, if possible, but without overloading the system.
As I understand, while(true) { ...code... } will hang the system.
What would you ...
1
vote
5answers
643 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 ...
0
votes
1answer
24 views
Make unnecessarily recompiles a target
Firstly, here's my Makefile, it's really, really cool.
It generates an executable for every 'c' file in the current directory.
Trivial with shell, PITA with Make... Did I mention, I haven't 'c'd in a ...
0
votes
1answer
32 views
Count the number of times a number is repeating in a vector
I have created a vector containing zeros and 1's using the following command in a for loop.
G(:,i)=rand(K,1)<rand;
Since this is part of a larger problem at a particular stage I need to count ...
0
votes
2answers
36 views
Panel Background Image Repetition C#
I want to place an image in a panel, but I do not want it repeated according to the size of the panel.
What I did is this:
panel3.BackgroundImage = picture1;
However, picture1 is repeated several ...
0
votes
1answer
62 views
Mysql array values repeated in while loop
I am having query where output from unique option getting repeated in
while loop belp quey with mysql dump
CREATE TABLE `txt` (
`option` varchar(10) NOT NULL,
`username` varchar(100) ...
0
votes
1answer
34 views
Reeating task every specified duration with background worker in .net?
i have a win form, where i have a block of code which keeps checking for entry in database, every say 2mins, now i want to avoid using timer control, for performance reason, can the same be achieved ...
0
votes
4answers
41 views
Streamlining repeated javascript
I'm new to this, 1 week of work experience in, so I appologise if there is a screamingly obvious solution to this problem. I had a quick look at similarly titled posts but couldn't find anything I ...
0
votes
4answers
171 views
How to repeat a function n times
I'm trying to write a function in python that is like:
def repeated(f, n):
...
where f is a function that takes one argument and n is a positive integer.
For example if I defined square as:
...
0
votes
1answer
120 views
How to avoid repeated SendMessage
I have a problem: I use SendMessage from a procedure in a DLL to communicate with the main window; procedure is a hook procedure that allows main window to know when mouse right button is clicked in a ...
0
votes
0answers
92 views
receiving same udp packet again and again xcode iphone
I am using AsyncUDPSocket Programming to receive packets but i am getting same packet again and again.When i try to store access packet recieved and print output on console i am getting same result ...
0
votes
2answers
130 views
How to eliminate repeated data using matlab
I listed my data to something like this. I want to eliminate the repeated data in each row. How can I do that using matlab?
13 13 13 13 38 38 38
13 13 42 0 0 0 0
expected result:
13 ...
0
votes
1answer
38 views
Matlab - running an (x,y) function on respective columns of 2 matrices
I have a quick Matlab question. In the code below, I am dividing two arrays(Upper and Lower) into subsets by dumping 36(binSize) into each column of subsetArrayU/L.
Here's what I want to do: i want ...
0
votes
1answer
88 views
Dreamweaver - Repeated Codes
I have around 6 or 7 pages in my site with repeated code. It's mostly repeated in the main and bottom menu. Can I use something in Dreamweaver to edit all the repeated code at the same time? Or maybe ...
0
votes
1answer
125 views
Remove elements not repeated in XML using xquey
I have this XML file
<?xml version="1.0"?>
<ns0:personas xmlns:ns0="http://www.personas.com">
<ns0:persona>
<ns0:idee>idee_1</ns0:idee>
...
0
votes
1answer
71 views
Repeated data in a XML
How can i get the () data which it's not repeated in a variable.
I use this function:
.
.
.
let $person:= $hopital1/persona
for $seq in (1 to count($derechohabiente))
return
...
0
votes
3answers
57 views
LINQ for returning first in repeating sequences
I have a Measurements table as follows:
SourceId : int
TimeStamp: date/time
Measurement: int
Sample data looks like this (more on the asterisks below):
SID| TimeStamp | Measurement
...
0
votes
4answers
227 views
Using a Thread Multiple Times
I'm trying to use a thread multiple times and have the thread stop processing if the user doesn't react fast enough.
Thread ask = new Thread (new ThreadStart (MathQuiz.prompt));
ask.Start();
...
0
votes
1answer
46 views
Flash looping causing variable value issues
Flash keeps looping which is causing certain variables to add values constantly. E.g.
if (userWord.text == word){
score = score + 1;
trace(score);
}
That will constantly add one to "score" when ...
0
votes
1answer
95 views
Splitting a string by a repeated regex in Ruby
I would like to parse text and separate it into tasks and subtasks:
'Asubsubsubtask:Bsubtask:Ctask:D'.split(/((sub)*task)\:/i)
#=> ["A", "subsubsubtask", "sub", "B", "subtask", "sub", "C", "task", ...
0
votes
0answers
68 views
HTML - the middle piece of the box repeats after the bottom piece in IE
I have a box that i have coded with div-tags. I have three pieces of the picture, one is a top piece, then a middle piece, and a bottom piece. My HTML code looks like this, you can test it if you want ...
0
votes
4answers
888 views
How do i make Android app which do something every X second
Hello i wanna do apliacation which every 1 second call function or do something else.
I have this code which is not working can you tell what is wrong?
public class App5_Thread extends Activity ...
0
votes
1answer
620 views
iReport: trying to hide elements B,C and D when value in A is repeated
I have a iReport question:
Let's say we have 4 columns on a detail band: A,B,C and D.
Column A can have the same value, and repeated values should be hidden.
So I uncheck the "Print Repeated Values" ...
0
votes
1answer
242 views
Html dynamically repeated border-image
I have a table which border I want to have a sort of zig-zag shape. I want the table to have an automatic size; resizing depending on how big the browser is. But rrathe than just having an image that ...
0
votes
0answers
31 views
repeated dates in rows
I have grid view.It contain date columns. I dont want to show repeat date in all the rows.
I mean i have to show on top once.
Please see my grid below. On Date Added column i want to show date only ...
0
votes
9answers
837 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 tokens