Tagged Questions
The findall tag has no wiki summary.
6
votes
2answers
107 views
python - regex search and findall
I need to find all matches in a string for a given regex. I've been using findall() to do that until I came across a case where it wasn't doing what I expected. For example:
regex = ...
6
votes
1answer
846 views
Grails: Is there a way to have findAll() without a query but with pagination and sorting?
As I noticed in the answers of another question there are a few problems when testing finder methods in GORM.
I want to get all objects from Something and have support for sorting and pagination, so I ...
6
votes
5answers
2k views
C# FindAll VS Where Speed
Anyone know any speed differences between Where and FindAll on List. I know Where is part of IEnumerable and FindAll is part of List, I'm just curious what's faster.
5
votes
3answers
4k views
Adding a parameter to a FindAll for a Generic List in C#
I have a list of objects that I want to filter by an integer parameter
List<testObject> objectList = new List<testObject>();
// populate objectList with testObjects
...
4
votes
3answers
221 views
Prolog findall Implementation
I've been tasked to implement a version of findall in Prolog without using any Prolog built-ins except for not and cut - so basically in pure Prolog.
I'm trying to search a tree for all direct ...
4
votes
7answers
194 views
FindAll search question
I have a list like this:
item.Add("a");
item.Add("as");
item.Add("b");
item.Add("fgs");
item.Add("adsd");
How can I find all items that start with (for example) "a"?
This "a" is not some hardcoded ...
3
votes
2answers
83 views
RegEx in python, not sure what I am doing wrong
I am quite new to Python and I researched as much as I could before I decided I should ask a question here. So here is the problem:
I am not sure what I am doing wrong with my RegEx. I wanted to try ...
3
votes
3answers
124 views
Find all solutions to a predicate
I'm trying to define a predicate that receives a single term with free variables and returns a list of mappings of those variables, so for example if the database is
a(0,1).
a(1,1).
the expected ...
3
votes
2answers
1k views
Rails ActiveRecord: Is a combined :include and :conditions query possible?
Imagine I have wiki Articles, with many Revisions. I'd like to do a query with ActiveRecord through the database, which only returns those Articles which have Revisions which are updated in the past ...
2
votes
1answer
31 views
Error when using 'find_all_by_'
I get an error while using find_all_by_
controller
@books = Book.find_by_author_id(4)
View
<%= @books.name %>
This works. But when I replace find_by_ with find_all_by_ I get this error
...
2
votes
1answer
137 views
findAll(String, Map, Map) method not present in integration test
I am using the GORM method findAll("query", [params], [pagination]), as per documentation : http://grails.org/doc/latest/ref/Domain%20Classes/findAll.html
It works fine at runtime, but it is not ...
2
votes
4answers
96 views
Regex to return all characters untill “/” searching backwards
I'm having trouble with this regex and I think I'm almost there.
m =re.findall('[a-z]{6}\.[a-z]{3}\.[a-z]{2} (?=\" target)', 'http://domain.com.uy " target')
This gives me the "exact" output that I ...
2
votes
3answers
101 views
Extraction from python over multiple lines
I'm working with python and am trying to extract numbers from a .txt file and then group them into multiple categories. The .txt file looks like this:
IF 92007<=ZIPCODE<=92011 OR ZIPCODE=92014 ...
2
votes
2answers
130 views
re.findall how to return matches with repeated ones
I have list of IP:PORT in html and when i use findall to search all ip i get the list of all ip becouse IP are unique , some of ports are the same and i get by example list of 100 IP's and only 87 ...
2
votes
2answers
196 views
Logically Handling Lists
I have a large number of facts within my program, listing developers and designers in a company, as well as previous projects, like so..
% project(Project Name,Year)
project(efnet, 2007).
% ...
2
votes
4answers
403 views
Using FindAll on a List<List<T>> type
Assuming
public class MyClass
{
public int ID {get; set; }
public string Name {get; set; }
}
and
List<MyClass> classList = //populate with MyClass instances of various IDs
I can do
...
2
votes
1answer
1k views
Groovy findAll closure parameters
I'm want use groovy findAll with my param to filtering closure
filterClosure = { it, param ->
it.getParam == param
}
How now i'm can call this closure in findAll? Something lik bellow?
myColl ...
1
vote
1answer
98 views
What is the VB.NET syntax for using List.FindAll() with a lambda?
In C# I have been performing a FindAll in a generic list as follows:
List<group.category> tlist = list.FindAll(p => p.parid == titem.catid);
Two questions, is this the appropriate way of ...
1
vote
1answer
464 views
CakePHP multiple JOIN findAll Conditions issue
Here is my complex (atleast i think it is complex) condition to find competitors from matches schedules and relating to events.
Now I have HTBTM relations with events_competitors table, where ...
1
vote
2answers
229 views
prolog findall/3 question
i know there is a build-in function findall/3 in prolog,
and im trying to find the total numbers of hours(Thrs) and store them in a list, then sum the list up. but it doesnt work for me. here is my ...
1
vote
1answer
351 views
Question of grails findAllBy when search for for foreign key
class File {
String name
File parent;
static belongsTo =[parent:File ]
static hasMany = [childrens:File];
static mapping = {
table 'Info_File'
...
1
vote
3answers
757 views
Grails find / findAll operation won't work?
I'm trying to build a Grails application which can do LDAP lookups. I've been following a few guides (link text and some others) but to no end I'm afraid.
Relevant source code:
From config.groovy:
...
1
vote
1answer
340 views
Python RE - different matching for finditer and findall
here is some code:
>>> p = re.compile(r'\S+ (\[CC\] )+\S+')
>>> s1 = 'always look [CC] on the bright side'
>>> s2 = 'always look [CC] [CC] on the bright side'
>>> ...
1
vote
2answers
2k views
Grails: No signature of method findAll() is applicable for argument types: String, ArrayList
I'm new to grails and receive the following error:
No signature of method: Something.findAll() is applicable for argument types: (java.lang.String, java.util.ArrayList) values: [from Something AS s ...
1
vote
1answer
498 views
Prolog findall existential quantifier
I have a problem with a problem in Prolog.
Here's some of the code I use.
has_same_elements([X|_],Y) :-
permutation(X,Xnew),
member(Xnew,Y), !.
has_same_elements([_|Tail],Y) :- ...
1
vote
4answers
488 views
grails findAll tag
How to use "SELECT id, name, part, description FROM user " in grails findAll tag.
I tried
User.findAll("SELECT id, name, part, description FROM user")
instead using
User.findAll("FROM user")
...
1
vote
2answers
704 views
C# Generic List - FindAll on child Arrays
I'm trying to find the best approach to filtering a list with C# (3.5) but I can't seem to find any examples that are similar to my situation. I'm open to using lambdas or linq.
The thing that is ...
1
vote
3answers
96 views
Having troubles with a simple Prolog question
I was resolving some prolog exercises when I fond myself with some difficulties resolving the following one:
Consider you have this fact base about object:
object(obj1).
object(obj2).
object(obj3). ...
1
vote
2answers
863 views
Groovy findAll and each tag question
I have the following domain classes:
class User = {
String username
...
Company company
}
class Company {
String name
...
}
That is, there is a n:1 relationship ...
1
vote
6answers
469 views
Python regexp find two keywords in a line
I'm having a hard time understanding this regex stuff...
I have a string like this:
<wn20schema:NounSynset rdf:about="&dn;synset-56242" rdfs:label="{saddelmageri_1}">
I want to use ...
1
vote
3answers
233 views
What is the equivalent of Python's “findAll” function in PHP?
re.findall(r'(\b[a-zA-Z][a-zA-Z0-9-]*)(?=\.com\b)', DATA)
how would this line be in PHP?
1
vote
5answers
2k views
Java: What is the best way to find elements in a sorted List?
I have a
List<Cat>
sorted by the cats' birthdays. Is there an efficient Java Collections way of finding all the cats that were born on January 24th, 1983? Or, what is a good approach in ...
1
vote
5answers
2k views
How do I perform a FindAll() on an IList<T>? (eg. SortedList.Values)
I'm working on a problem in C# 2.0/.NET 2.0 where I have a Sortedlist and want to search all the "values" (not the "keys") of this SortedList for a certain substring and count up how many occurrences ...
1
vote
3answers
443 views
Method chaining generic list extensions
I have a List of a "complex" type - an object with a few string properties. The List itself is a property of another object and contains objects of a variety of types, as shown in this abbreviated ...
0
votes
1answer
28 views
Prolog findall syntax
I would like to write this:
paths( Result ) :-
findall( B, f(B) , Result ).
f( B ) :-
f1( B ),
f2( B ).
in just one line.
So basically something like:
paths( Result ) :-
findall( ...
0
votes
1answer
57 views
Prolog - The same functioning but with no findall
Does anyone know how I could implement I predicate doing what this one does but without "findall"?
Thank you a lot.
domains
oferta = rebaixat ; normal
element = string
list = ...
0
votes
1answer
34 views
CakePHP findallby returns empty string
I got a problem with my cakePHP App.
Here are two queries:
$this->Link->findAllByLink($imdbid)
$this->Link->findByLink($imdbid)
The second one returns an array with a single Item and ...
0
votes
1answer
19 views
Komodo Edit - How to modify the default “Find all functions” regex
In Komodo Edit 6.1 , there is a nice feature to find and highlight all the functions (navigation->Find all functions ctrl+F8). It searches based on a Regex to find all the functions, which is this :
...
0
votes
3answers
61 views
How can I get my RegEx to capture text on both sides of a colon?
I am trying to parse some input text from a file, which are originally grabbed from the Twitter API. The file is straight text and I am not actually grabbing the JSON in this case. This is a snippet ...
0
votes
2answers
133 views
python findall, group and pipe
x = "type='text'"
re.findall("([A-Za-z])='(.*?)')", x) # this will work like a charm and produce
# ['type', 'text']
However, my problem is that I'd like to ...
0
votes
2answers
168 views
Error when using DetachedCriteria for both Count and Findall in Castle Activerecord
Guys,
I've got this problem that I searched almost everywhere (maybe I don't know the right keyword for it.) I need your help!
The relationship is quite simple, I have two Activerecord Domain: Team ...
0
votes
1answer
144 views
Syntax for cakePHP findAll
$lg = $this->Log->findAll('Log.log_user_id='.$user[0]['User']['id'], 'Log.created' DESC');
$this->set('lg', $lg);
Returns SQL error
Need to sort the findAll by created DESC (most recent ...
0
votes
2answers
146 views
CakePHP read() not retrieving belongsTo bindings
I have a model called Voicenote with has a belongsTo relationship with Fonyker and ActivitySource. When I do the following:
function admin_index(){
$this->layout = 'admin';
...
0
votes
1answer
95 views
Generic Lists and Findall predicate search child list
From the code below I am able to use a predicate search and find all the merchants that have an Id greater than 4, using a similar approach how would I go about returning all the merchants and their ...
0
votes
2answers
236 views
Python findall and regular expressions
I am parsing an xml file (called xml below) that has lines of two varying types:
1. <line a="a1" b="b1" c="c1">
2. <line a="a2" c="c2">
I am trying to pull a2 and c2 only from the ...
0
votes
2answers
123 views
ActiveRecordBase.FindAll() does not allow first level cache?
NHibernate's first level cache is available when one use same session. ActiveRecordBase.FindAll() each time creates a new ISession. So such a following can not profit from first level cache:
void ...
0
votes
1answer
204 views
Can list.findall reference a variable?
Such as:
mylist.FindAll(Function(item) item.property = variable)
The reason I ask is if I use syntax like this, I tend to get a string to whatevever conversion error, which makes me think ...
0
votes
4answers
207 views
Predicates and Lists
I have a generic list.
Some elements of this list belong to a parent element. I retrieved all these elements from a database and i want to recursively build a tree with them.
So, here's what i'm ...
0
votes
2answers
78 views
How do I ensure I always get a list of matches from Python's Regular Expressions?
I'm trying to pull some information (no recursion necessary) from a jsp page (malformed xml) similar to this:
<td>
<html:button ...></html:button>
<html:submit ...
0
votes
1answer
619 views
Grails: How to combine findAllBy and findAllByTag
as I am new to Grails and dynamic languages, I do have some 'hopefully simple' question.
I installed the taggable plugin which works fine. There is an array coming in with tags. I collect for every ...