Questions tagged [no-match]
30 questions
1
vote
1 answer
PHP: No match when using exclamation mark in regular expression
I'm trying to use preg_match to find a commented part in a loaded HTML file. The exclamation mark present seems to break it, however. Whenever I try to use
preg_match("/

Thevet
- 154
- 9
0
votes
1 answer
Python regex: re.search() does not find string
I have trouble using the re.search() method. I am trying to extract an image link from following string explicit:
div class="beitragstext">\n\t\t\t\t
Es gibt derzeit keine Gründe mehr NICHT auf 1.1.3 zu springen!
\n
0
votes
1 answer
Linked List no match for operator* compiler error
I'm trying to make a basic C++ program using objects that accepts a hex value into a linked list, and allows the user to add/multiply the values in the list. The problem is that I'm getting a compiler error in the multiplication area of my object.…

deadly.foxie
- 3
- 1
0
votes
1 answer
I have an issue with react-router-dom, NoMatch doesn’t accept URL like /foo/bar
I'm using a classic configuration with React, Redux and React-router-dom. Everything work fine in dev. and production mode (localhost and production server). I just have an issue with NoMatch process.
/good-path, it's work
/wrong-path it's work and…

NmiDev
- 96
- 4
0
votes
1 answer
Access VBA NoMatch = True when I think NoMatch should be False, Where am I going wrong?
Through various kind souls @jericho johnson, and others. I have VBA code that appears to be working. Except for one part. The final 'Else' condition, "Do While Not StrSQL1.NoMatch". It always equals true. Even if the value being referenced in…

rgorowsky
- 105
- 1
- 12
0
votes
1 answer
csh set: no match error wildcard
trying to look up files in directories with wildcard *, and put the names into an array
the files have similar names (MATCHr1, MATCHr2 ... )
the problem arises when the file does not exist (which is a possibility)
set command returns a "no match"…

gijoeyjoe
- 3
- 4
0
votes
1 answer
R Data frame column update
I have a dataframe with names
I have a second dataframe with a dictionary of names and the sex of those names
I want to check if the name is in the dictionary if it is then add the sex from the dictionary table to the names dataframe
My code looks…

John Smith
- 2,448
- 7
- 54
- 78
0
votes
1 answer
QList operator<<
I have a QList element named competence inside a class, and another class object named k. I want to make a deep copy( this.competence must be a deep copy of k.competence ).
I use an iterator it:
QList< QString>::iterator it;
for( it =…

Luca Nicoletti
- 102
- 11
0
votes
1 answer
sas merge nomatch conditional for only one table
I have 4 tables:
one with a list of users that did sth (post or reply) in march (field email1)
one with replies of users made in jan (several fields but I need to use Mailfrom_Address)
another with replies made in feb (several fields but I need to…

GabyLP
- 3,649
- 7
- 45
- 66
0
votes
2 answers
no match for 'operator=' in
I have templated class BSTNode,
BSTNode.h
#ifndef _NODE_BST_H_
#define _NODE_BST_H_
template
struct BSTNode
{
typedef K keyType;
typedef T elementType;
keyType _key;
elementType _element;
…

geraldCelente
- 1,005
- 2
- 16
- 36
0
votes
1 answer
How to map a set of objects in Hibernate without primary keys being equally named?
I have a domain object class that represents a table. This class has an association to another table, but the source class' property is not named the same as the target class' property, and I'm not sure how to hibernate map it.
Here is an example…

MetroidFan2002
- 29,217
- 16
- 62
- 80
-1
votes
2 answers
"No match for operator>>" but I don't understand why. Could you explain me, please?
I have got the following code:
#include
#include
using namespace std;
vector Reversed(const vector& v){
//vector v; //[Error] declaration of 'std::vector v' shadows a parameter
int z;…

Ram Rai
- 19
- 3
-1
votes
1 answer
Find and print exact match from a file, notify in print if a match could not be found
I am using the following Perl script to search multiple files, and print out the entire text line when a particular number in that line is matched:
#!/perl/bin/perl
use strict;
use warnings;
my @files = ;
foreach my $file…

normbeef
- 27
- 3
-1
votes
1 answer
Why doesn't this regex catch the periods correctly?
I'm fiddling around trying to learn more about shell scripting. So, I have some files with email in them that spamassassin writes to a directory, and I thought I would try to do some regex matching on them. So, I select files that require…

Paul Schmehl
- 1
- 1
-1
votes
1 answer
error: no match for operator ==
I'm receiving an error for multiple areas of my three files. (I'm also having problems with my default constructor, which is why it is commented out. But I want to solve this problem first)
//…

5unnyr4y3
- 85
- 1
- 2
- 11