Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
285 views

Python - find the item with maximum occurrences

In Python, I have a list L = [1, 2, 45, 55, 5, 4, 4, 4, 4, 4, 4, 5456, 56, 6, 7, 67] I want to figure out the number which occurred the maximum number of times. I am able to solve it but I need ...
4
votes
3answers
173 views

sql, how to count all combined occurences?

Is there any option, to gain counted combinations of all elements in ONE sql query? (without using temp tables or procedures?) products (id, product_name) transactions (id, date) ...
3
votes
2answers
40 views

How to accumulate data-sets in Matlab

I have vector with values between 1 and N > 1. Some values COULD occur multiple times consecutively. Now I want to have a second row which counts the consecutively entries and remove all those ...
3
votes
3answers
197 views

Finding the most popular words in a list

I have a list of words: words = ['all', 'awesome', 'all', 'yeah', 'bye', 'all', 'yeah'] And I want to get a list of tuples: [(3, 'all'), (2, 'yeah'), (1, 'bye'), (1, 'awesome')] where each tuple ...
3
votes
2answers
3k views

Replace occurences of NSString - iPhone

I have a long NSString in which I m trying to replace special characters. Part of my string looks like this: "veau (c\u00f4telette)","veau (filet)","agneau (gigot)","agneau ...
3
votes
2answers
2k views

How to change highlighted occurences color in Eclipse's sidebar?

When you have "Mark occurences" enabled in Eclipse, placing the cursor on any type/variable/method/etc will highlight all occurences in the text editor and place a faint bar in the right ruler to show ...
2
votes
4answers
78 views

concatenate a string before the last occurence of any character

I want to concatenate a string before the last occurence of any character. I want to do something like this: addToString(lastIndexOf(separator), string); where "ddToString" is a function that ...
2
votes
3answers
299 views

SQL Query To Obtain Value that Occurs more than once

so I need to query my database to show the records inside my table where lastname occurs more than three times. Example: in my Students Table, there are 3 people with Lastname 'Smith', 4 with ...
2
votes
2answers
94 views

jquery: how to fix the multiple occurrence rises in a plugin?

I made my first jquery plugin attempt, but I have this problem/ bug which I don't know how to work around it in a plugin. Here is the link to see the problem - my first plugin. Here is how you can ...
1
vote
1answer
40 views

Regex and no. of occurences

I want it to match a 2-to-15-character string containing only capital/lowercase letters and numbers; hyphens only allowed in-between. /^[a-z0-9][a-z0-9\-]{0,13}[a-z0-9]$/i Such as: a-b-c ab a-b ...
1
vote
5answers
89 views

Counting the number of times a pattern appears in a string

What is the best method for counting the number of times a string appears within a string using JS? For example: count("fat math cat", "at") returns 3 Thanks in advance!
1
vote
4answers
116 views

Dictionary Checking

I have a list and I am getting each item in the list in a foreach loop. private void saveButton_Click(object sender, EventArgs e) { if (saveFile1.ShowDialog() == DialogResult.OK) ...
1
vote
4answers
252 views

python/numpy first occurrence of subarray

In Python or NumPy, what is the best way to find out the first occurrence of a subarray? For exmaple, I have a = [1, 2, 3, 4, 5, 6] b = [2, 3, 4] What is the fastest way (run-time-wise) to find ...
1
vote
3answers
142 views

PHP count object propety occurences

I have a PHP object like below and all I want to know whats ths the easiest way to get a count of objects where the property 'typeId' = 3 Array ( [0] => ABC Object ( [id] ...
1
vote
2answers
143 views

Order IEnumerable by occurences

I have an enumerable collection of entities which have come from Linq2Sql (they have been enumerated to an array by this stage). The collection may (probably will) contain multiple occurences of the ...
1
vote
4answers
279 views

How to get first character occurrence in text their keeping original order?

I try to get first character occurrence in text keeping their original order. I try to use LINQ but I'm very new in this, so something is wrong, and I have bad result. For example I write: ...
1
vote
4answers
2k views

Count occurences of word in ArrayList

I have an ArrayList of words in Java with duplicate entries. I want to count and save occurrences for each word in a data structure. How can do it?
1
vote
1answer
120 views

Ruby on Rails: Get all entities that have zero occurences on a particular association and condition

I am using Rails 2.3.8 I have two models that represent bikes and rentals on bikes respectively. One bike can have many rentals but at most one "acive" rental. I distinguish the active rentals with a ...
1
vote
3answers
326 views

How to find the largest square in the number (Java)

I want to decompose the number into the product of the largest square in this number and some other number, but I am stuck at some point. I would really appreciate some suggestions. This is what I've ...
1
vote
3answers
136 views

MySQL: Number of subsequent occurrences

I have a table with four columns: id, from, to, msg. The rows can look like this: 1 - foo - bar - hello 2 - foo - bar - zup? 3 - bar - foo - hi 4 - bar - foo - going okay 5 - bar - foo - you? Now ...
1
vote
3answers
286 views

How to count the occurrences of a string inside TEXT datatype in sql server 2005

There is a column of datatype TEXT in my table. Now, I need to find the number of occurrences of a string in that TEXT field. I have already created a Full-text index on that table. But I don't know ...
0
votes
6answers
52 views

Get the number of word occurrences in text

Can this be done using C# Linq? For example: peter piper picked a pack of pickled peppers, the peppers were sweet and sower for peter, peter thought Result: peter 3 peppers 2 picked 1 ... I ...
0
votes
1answer
36 views

Match something like its previous occurrence

I need to make a regex which matches content between tags like this: <tag> <b> Match Me </b> </other-closing-tag> It should match only the content between the same tag. ...
0
votes
1answer
47 views

Scan through sliding window looking for certain combination of letters in a string. Count occurrences . Python

If you have a sequence and you create a a list of window size 4. In each of those windows your looking for particular arrangement. #Example: count=0 test='abcdaecdagcd' ...
0
votes
3answers
75 views

Python - Dictionaries and listing positions of word in a list

I need to take a list and use a dictionary to catalogue where a particular item occurs in a list, as an example: L = ['a', 'b', 'c', 'b', 'c', 'a', 'e'] the dictionary needs to contain the ...
0
votes
0answers
52 views

How to add the “Mark Occurrences” in Eclipse RCP Text Editor [closed]

Possible Duplicate: Implement “Mark Occurance” in new Eclipse editor I want to ask how to implement the "Mark Occurrences" feature in an Eclipse-RCP-based text editor for ...
0
votes
1answer
12 views

Switch between marked occurances shortcut in Eclipse

I wonder if there some shortcut for switching between marced occurances in Eclipse. Thanks in advance.
0
votes
1answer
167 views

MySQL - Selecting people's names based on most occurrences

Given: Table with id, first and last fields. How would you find the top 5 most popular people by occurrence when the first and last are separate fields? This is the non-working code I have now... ...
0
votes
2answers
287 views

RegEx: get first occurrence of pattern

ive got a string which goes like [...] <a rel=\"nofollow\" class=\"username offline popupctrl\" href=\"http://....html\" title=\"T3XTT0F1ND is offline\" id=\"...\">\">\">\">"[...] If ...
0
votes
2answers
220 views

Get all text after a string until next occurrence of the string?

How can i get all the text after every occurrence of a string for example, I have to following text: commonstring text and more text and more random text that may or may not be on multiple lines ...
0
votes
4answers
1k views

Java - Indexes of all occurrences of character in a string

The following code will print 2 String word = "bannanas"; String guess = "n"; int index; System.out.println( index = word.indexOf(guess) ); I would like to know how to get all the indexes ...
0
votes
5answers
196 views

SQL - Get array of data ordered by occurences

I have a table with this kind of data in one of its column: ANS1228E ANS4987E ANS1228E ANS4987E ANS1228E ANS4987E ANS1228E ANS4987E ANS1228E ANS4987E ANS1802E ANS1228E ANS5258E ANS1375E ANS1999E ...
0
votes
3answers
37 views

Changing occurences of one pattern to another

grep -R \"\/web * gives me some occurrences which i want to change to \"\$\/web How can I do this?