0
votes
1answer
22 views

Benefits of removing vowels prior to string encoding

I'm going through C++ code that encodes address data for match-merging. I have very limited expertise in C++, but I'm pretty sure one step of the process is to drop vowels, and encode consonants with ...
1
vote
2answers
32 views

Detect and match function opening and end brace in source code

I would like to know if there are already good algorithms to detect function declaration, function content, its opening brace and closing one. For development, debug and testing for bugs, it could be ...
1
vote
4answers
62 views

matching none or more Lua pattern

I am wondering if it was possible to make a pattern that could work like this: With [icon=star w=32 h=32 spin=90], it would return a table with: icon: star w: 32 h: 32 spin: 90 I've tried ...
0
votes
2answers
193 views

String pattern matching in T-SQL

I am trying to create a View on a Log table. A lot of the logs are from "potentially dangerous form requests", and while I'm interested in capturing these, they also create a lot of noise, so I'd ...
1
vote
2answers
52 views

Specific Regular Expression In Javascript with a condition

How to format a regular expression In JavaScript : http://localhost:3000/sales?&tp=Home+Stay&am=Pool&pl=1620&pt=Flash+Sale&st=5 I want to get &pl= and all the digits after ...
0
votes
2answers
106 views

RegExp extract specific string follwed by any number with leading / trailing whitespace

I want to extract a string from another using JavaScript / RegExp. Here is what I got: var string = "wp-button wp-image-45 wp-label"; string.match(/(?:(?:.*)?\s+)?(wp-image-([0-9]+))(:?\s(?:.*)?)?/); ...
2
votes
2answers
234 views

Efficient algorithm for string matching with a very large pattern set

I'm looking for an efficient algorithm able to find all patterns that match a specific string. The pattern set can be very large (more than 100,000) and dynamic (patterns added or removed at anytime). ...
0
votes
4answers
95 views

Filtering HTML document with 1-10k keywords

I have a html Document and want to filter it against the occurrency of multiple (1 - 10k) [1k at the moment, later on up to 10k] keywords. I have a precompiled regex which stores my searchterms like: ...
2
votes
1answer
102 views

Lua patterns query

I need to detect a word say john from a larger string,say john is a good man So I have this pattern to find the word [j][o][h][n] and use it as follows: local pattern = "[j][o][h][n]" local str ...
2
votes
1answer
71 views

How to extract data for non-fixed string

I have some magnet links being submitted as string in Lua. These magnets normally are of the format: magnet:?xt=<hashing>&xl=<size>&dn=<name> but with differences in the ...
5
votes
1answer
106 views

Record Matching algorithms for an inconsistent dataset

I'm working with a large dataset of products(~1 million). These products come from many different sources and thus the way they have data listed in inconsistent. One of the big issues is variances ...
0
votes
1answer
54 views

Is there a javascript library to parse simple queries?

I want to filter a list of strings according to whether certain words are contained in the string, or are absent from the string, or some combination. I'd like the input to be straightforward, for ...
1
vote
1answer
48 views

Can I seek and count for different types in a Mathematica result with a Perl script?

Hi I tried to seek three different patterns into a large output file generate in Mathematica. I want to analyze with a perl script. This is the output file: ...
0
votes
1answer
311 views

Lua - extract a string using patterns

I'm just starting on Lua Patterns. I have a string |2|34|56|1 How do I extract the numbers from the string? I can parse the string manually and exclude all the '|' characters. But I'm sure using ...
2
votes
3answers
333 views

Java: Does anyone have method to find best match of string in array?

Basically I'm just trying to find a way to find the closest match (not necessarily exact) of a String For example, find "delicous" in {"pie", "delicious", "test"} This is pretty obvious, but the ...
3
votes
3answers
467 views

UTL_MATCH-like function to work with CLOB

My question is: Is there a UTL_MATCH-like function which works with a CLOB rather than a VARCHAR2? My specific problem is: I'm on an Oracle database. I have a bunch of pre-written queries which ...
-1
votes
1answer
74 views

No output generated while using python dictionary

I'm trying to match two txt files and then saving the index of matched locations in a python dictionary called tmp. Now I'm trying to print the content between the start index and end index based on ...
-1
votes
2answers
129 views

Find arbitary patterns common to a group of strings

Background: I am developing a program in that iterates over all the movies & tv series episodes stored on my computer, rates them (using rotten tomatoes) and sorts them in order of rating. I ...
5
votes
4answers
753 views

String pattern matching with one or zero mismatch

Given a string and a pattern to be matched, how efficiently can the matches be found having zero or one mismatch. e.g) S = abbbaaabbbabab P = abab Matches are abbb(index 0),aaab(index 4),abbb(index ...
0
votes
2answers
91 views

Which language gives more efficiency for string pattern matching? [closed]

I want to implement a searching algorithm for sequence of words. For that i need good efficiency for handling string operations.
2
votes
1answer
238 views

What algorithm used in std::search?

Based on what I know that there are many string matching algorithms can be used to find a pattern (string) in a big text, like Booyer Moore, Aho-Corasick ..etc. I would like to know which string ...
-1
votes
1answer
194 views

Detecting Duplicate Codes From A Source Code Using String Matching Algorithm( KMP ) [closed]

I don't know how to implement the algorithm (KMP) to detect a duplicate code or simple clones from a source code ( which is more than 1000 lines ). How to detect the functionality of the codes and ...
2
votes
1answer
179 views

Fuzzy matching of forenames in R?

I have two lists of names for the same set of students which have been collected separately. There are numerous typographical errors and I have been using fuzzy matching to link the two lists. I am ...
1
vote
3answers
650 views

String matching implementation

I wrote the below code to check whether a certin string exists in a text or no. The issue is that match() function always returns false even the pattern exists in the text. int main(){ char ...
-1
votes
4answers
1k views

regex to match html tags with specific attributes

I am trying to match all HTML tags that do not have the attribute "term" or "range" here is sample HTML format <span class="inline prewrap strong">DATE:</span> 12/01/10 <span ...
4
votes
6answers
303 views

Algorithm to match 2 lists with wildcards

I'm looking for an efficient way to match 2 lists, one wich contains complete information, and one which contains wildcards. I've been able to do this with wildcards of fixed lengths, but am now ...
1
vote
2answers
225 views

How to match a word(String) in URL

This website contains different Url, But i want my application should vist urls only which contains specific keyword like "drugs" like if urls are http://website.com/countryname/drug/info/A ...
5
votes
1answer
326 views

Real time Prefix matching and auto-complete in Quora

How is real time autocomplete with prefix matching implemented in Quora ? Since Solr and Sphinx doesn't support real-time updating so what changes were made to support real time updating?
1
vote
2answers
286 views

Mathematica Lists - Search Level Two and Return Level One?

I need to string match in the second level of a list but have true cases returned at the first level (there's information in the first level that I need to categorize the returns). First /@ ...
0
votes
2answers
243 views

Mathematica - Exclude a String from a String Search

I'm trying to select the most frequently occurring key words on a table. I need to search for the number of occurrences of a word in a list that DOES NOT include a given second, third, fourth, etc. ...
0
votes
3answers
97 views

Get the matches only if the substring is not part of a string

Hello I actually am looking for a string which is a substring of another string. So I am using grep to get the matches of this string, but the matches of the other string too are coming up. grep -nr ...
6
votes
2answers
2k views

Wildcard string matching in Ruby

I'd like to write a utility function/module that'll provide simple wildcard/glob matching to strings. The reason I'm not using regular expressions is that the user will be the one who'll end up ...
1
vote
2answers
510 views

Matching algorithm or regular expression?

I have a huge log file with different types of string rows, and I need to extract data in a "smart" way from these. Sample snippet: 2011-03-05 node32_three INFO stack trace, at empty string asfa ...
1
vote
0answers
79 views

Soundex to match common SMS or IM short forms

I was doing bit of experimentation the Apache commons soundex. And, I found it works quite well for strings. I was looking for an API or way by which I can match words or strings in sms or usual IM ...
2
votes
5answers
349 views

using java , what are the methods to find a word inside a string?

if i have a string str that is: a>b what is the best way to find if string str has a > ?do i use: delimiter =">" str.split(delimter) or str.contains(">") or regular expression? ...
0
votes
2answers
234 views

Regex fails to match string

I have a piece of code below which I am trying to use to match the start and the end of a string where the middle can change. I am first trying to get this example working could someone please tell me ...
0
votes
3answers
2k views

Regex Pattern Matching: Using only the start and end of a pattern for matching

Hi I am really struggling with this problem; I am trying to use regex to match the start and end of a pattern where the middle of the pattern can change. So I would like to use a regex expression ...
9
votes
11answers
3k views

Search for string allowing for one mismatch in any location of the string

I am working with DNA sequences of length 25 (see examples below). I have a list of 230,000 and need to look for each sequence in the entire genome (toxoplasma gondii parasite). I am not sure how ...
1
vote
2answers
338 views

String matching technique(s) by converting to number?

I have various length strings which are full of Base64 chars. Actualy they are audio recognition datas differs by song-to-song. For easily comparing parts of those strings i divide them into 16-char ...