The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
54 views

std::remove_if using other class method

I want to use std::remove_if with a predicate that is a member function of a differenct calss. That is class B; class A { bool invalidB( const B& b ) const; // use members of class A to ...
2
votes
4answers
69 views

How to check if element has HTML in it before removing? jQuery

in a function I need to check if a (div, span, p) contains any .html elements in it before attempting to remove the html and add in new content. Not sure how to do this... I tried this, but not ...
2
votes
2answers
110 views

remove_if with boost::bind is slow

I have a std::list of classes and want to remove entries that are marked for delete. I am using std::remove_if and erase. class MyClass { bool isDone(MyData& myData) { return ...
0
votes
1answer
10 views

phpmyadmin how to remove certain text from a field?

I have a table called products which has a field called products_description, how can I remove certain text from the fields for example if the text abc exists then remove it from all products? thanks ...
0
votes
2answers
110 views

list::remove_if equivalent

I'd like to know if its possible to represent this expression using remove_if and a lambda expression. std::list< gh::Actor* >::iterator astit = actors.begin(); while (astit != ...
1
vote
2answers
70 views

How to remove special chars EXACTLY in .net 2.0, no linq is provided

I must to use .NET 2.0 and I have no Linq support here, also... I've tried to trim chars using Remove() and Trim() functions like: string guid = Guid.NewGuid().ToString(); string result = ...
1
vote
3answers
57 views

REGEX - Remove specified string

I need help with Regex. I have words like "testBla", "Bla" and test". I want to cut the "test" from the "testBla". So it should only remove the "test" if the given string is larger than 4 characters. ...
2
votes
2answers
161 views

remove tag but keep content between tag if matched string

I have file php: <?php $content = " <script> include string show_ads_1 and other string 1 </script> <script> include string show_ads_2 and other string 2 </script> ...
0
votes
3answers
168 views

Itarating over std::vector with lambda does not want to remove with remove_if

I have a small problem with lambda expression while using remove_if on std::vector I have a following piece of code : std::remove_if( openList.begin(), openList.end(), ...
1
vote
1answer
73 views

How to remove duplicate entries if they occur within a certain time frame in R

I am trying to handle a database like the one below which has camera trap data. There is no lag between photos being taken so ones that occur in quick succession are likely to be the same individual. ...
1
vote
1answer
124 views

Is remove_if predicate guaranteed to be called only once per iterator?

I've been reading the latest C++ spec, and I'm unable to figure out whether or not remove_if can be called multiple times for the same element. In particular, I'm looking at std::remove_if being ...
2
votes
2answers
184 views

remove_if string matches a given string in a set

I was thinking about using remove_if on a vector of strings as follows in the pseudo code below: for(some strings in a given set) { remove_if(myvec.begin(), myvec.end(), ...
0
votes
1answer
216 views

jstree stable version: How do I check if there are any children before refreshing the tree?

I want only to refresh the tree if there are no children.. ie: $.jstree._reference("#f").get_checked(-1, true).each(function(index,element) { ...
4
votes
1answer
99 views

Trouble with remove_if (it stops removing after a few removals)

The code below wants to take a string and output only lowercase letters from the English alphabet. string simplifyString(string word) { word.erase(remove_if(word.begin(), word.end(), [](char ...
1
vote
1answer
100 views

Are STL predicates allowed to use their argument's address?

When writing a custom predicate function/functor to pass to an STL algorithm, is the predicate allowed to use the address of its argument? Here's the problem that inspired the question. I have a ...
1
vote
1answer
163 views

I don't understand how to do a remove_if not in c++

This code works but it is a bit limited so I want to remove something if it is not equal to a letter. I know that I have to use ::isalpha instead of ::ispunct but I don't understand how to make it ...
2
votes
1answer
429 views

Remove Elements from an Unordered Map Fulfilling a Predicate

I want to remove elements (histogram bins) from an std::unordered_map (histogram) that fulfills a predictate (histogram bins having zero count) given as a lambda expression as follows ...
2
votes
3answers
454 views

c++ STL algo remove_if used with template

I tried to apply stl algorithm remove_if on template, and met some trouble. Any help is appreciated! template <class T> bool flag_delete(pair<T,int> a) {return (a.second == 1);} template ...
1
vote
2answers
188 views

C++ remove_if overwriting my vector

My remove_if seems to be overwriting the elements that are not filtered out with values of filtered out elements. The purpose of these code is to allow user to filter and display only teacher from a ...
1
vote
3answers
180 views

C++ Regarding pointer/reference with remove_if

I'm trying to use remove_if to remove elements in my vector to do filtering. The problem is when I compile the coding, there were no error but when I try to use the filter function, error popped out ...
2
votes
4answers
1k views

g++ string remove_if error

Here's the code: #include <iostream> #include <string> #include <algorithm> using namespace std; int main() { string word=""; getline(cin,word); ...
0
votes
1answer
375 views

How to use remove_if with erase

I would like to know how to remove an object from a list base on a condition. After researching, this is what I got, but it still doesn't work! So I would like to know how to use remove_if with ...
0
votes
3answers
962 views

How do delete items in a vector if using remove_if and items are pointers to objects?

I fear that I am running into memory leak issues by doing the following: (Sample code) class myItem //random container stuff mostly. All primatives. { int index; char* name; int val1; ...
1
vote
2answers
227 views

c++ vector; remove_if only removing a single value?

I'm supposed to implement a function that erases a range of values from containers. So eraseRange(v, 1.5, 24); for example would delete any value greater than 1.5 and less than 24 from the ...
2
votes
3answers
5k views

Replace/Remove characters that do not match the Regular Expression (.NET)

I have a regular expression to validate a string. But now I want to remove all the characters that do not match my regular expression. E.g. regExpression = @"^([\w\'\-\+])" text = "This is a sample ...
2
votes
3answers
2k views

C++ Operator () parenthesis overloading

I recently asked a question about removing items from a vector. Well, the solution I got works, but I don't understand it - and I cannot find any documentation explaining it. struct RemoveBlockedHost ...
18
votes
7answers
1k views

What is wrong with `std::set`?

In the other topic I was trying to solve this problem. The problem was to remove duplicate characters from a std::string. std::string s= "saaangeetha"; Since the order was not important, so I ...
9
votes
3answers
3k views

std::remove_if - lambda, not removing anything from the collection

Ok, I expect I've made a dumb mistake here. I have a list of DisplayDevice3d and each DisplayDevice3d contains a list of DisplayMode3d. I want to remove all items from the list of DisplayDevice3d ...
1
vote
4answers
1k views

In C++, removing an object from a list

I'm writing a program which is more or less like this : #include <list> list<MyClass> things; class MyClass { // some stuff void remove() { things.remove_if(THING_IS_ME); ...
5
votes
3answers
596 views

Turning remove_if into remove_not_if

How can I reverse a predicate's return value, and remove the elements that return false instead of true? Here is my code: headerList.remove_if(FindName(name)); (please ignore lack of erase) with ...