Questions tagged [multiple-matches]
70 questions
0
votes
2 answers
Count matches in array of arrays PHP
Array
(
[0] => Array
(
[song] => More Than A Feeling
[artist] => Not Boston
[time] => 15:00
)
[1] => Array
(
[song] => More Than A Feeling
[artist] => Boston
[time] => 11:20
)
…

Bennett
- 1
- 2
0
votes
1 answer
PHP preg_replace inside blocks of text
I have some text, like this for example:
$text="
Some test text.
Some test text.
"; And I have an array of regular expressions: $regexes = array( 0 => '/.*<\/div>/',
1 => '/
.*<\/p>/') ; I need apply…

MoxFulder
- 401
- 4
- 2
0
votes
0 answers
opencv SIFT/SURF: output best match from one to many comparison
Im using the matching to many images sample with opencv here's original version
Im struggling to understand the code, I'm simply looking to calculate and output the image that has the most/best matches.
What I thought was I could use for…

user3061694
- 55
- 2
- 9
0
votes
4 answers
How to get each tablerow in regex from a string (C#)?
Basically, I've got a string like this:
I want to get each tablerow using Regex.Matches (c#)
What would my regex pattern be?
I've tried the following…

Kevin Van Ryckegem
- 1,915
- 3
- 28
- 55
0
votes
3 answers
Checking for multiple occurrence of character repeated or spread out in string with regex
Having syntax trouble, I'm new to using regex. I'm coding in java.
I need to check if an apostrophe is used more than once in a string. Multiple apostrophes can either be consecutive or spread out over the string.
For example: Doesn't'work or…

Juliana
- 47
- 1
- 1
- 6
0
votes
1 answer
Find Matches in MySQL by uknown common Words
I'm working on a MYSQL table in which i have thousands (20 thousand) of issues reported by users collected in the last 2 years. And now I have to treat this reported issues separately.
The problem I am facing is that many of these reported issues…

PaxBin
- 111
- 3
- 14
0
votes
1 answer
.net/powershell regex single match
I have spent days trying to work this out. Managed to get text to be captured but I need only one of the lines.
I have tried various ways but always get all matches returned to me.
This line of text appears 3 times

TallPaul
- 1
-1
votes
1 answer
Regular Expression Pattern for Full Match of Filenames
I am looping through an Array of Image Filenames which are as below:
ConImage1 - Core.png
ConImage211 - Core.png
ConImage34 - Core.png
ConImage09 - Core.png
ConImage11 -…

sifar
- 1,086
- 1
- 17
- 43
-1
votes
1 answer
find specific string pattern in text using regular expression in java
I need to find the regular expression to use as an argument in string.matches.
I have a text of strings separated by space " " and i want to find what type of Number is it. First of all i need to check pattern like this: "[number] E [number] &…
-2
votes
1 answer
Best way to find matches in sheet compared to listbox vba
I basically want to know what is the best way to compare items in a sheet to a listbox, basically, items in listbox need to be found on a sheet, if they are not found they need to go to the bottom of the sheet on the next free row,
This shouldn't…

Ashley Davies
- 25
- 7