Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
3answers
4k views

Search for selection in vim

I use vim and vim plugins for visual studio when writing C++. Often, I find myself wanting to search for a string within a function, for example every call to object->public_member.memberfunc(). I ...
7
votes
7answers
4k views

How to find best fuzzy match for a string in a large string database

I have a database of strings (arbitrary length) which holds more than one million items (potentially more). I need to compare a user-provided string against the whole database and retrieve an ...
5
votes
2answers
813 views

php - Is strpos the fastest way to search for a string in a large body of text?

if (strpos(htmlentities($storage->getMessage($i)),'chocolate')) Hi, I'm using gmail oauth access to find specific text strings in email addresses. Is there a way to find text instances quicker ...
4
votes
5answers
213 views

Mathematica - Print Different Output Values Corresponding to Duplicate Input in a Table?

For example, TableA: ID1 ID2 123 abc 123 def 123 ghi 123 jkl 123 mno 456 abc 456 jkl I want to do a string search for 123 and ...
4
votes
7answers
186 views

Replace repeating strings in a string

I'm trying to find (and replace) repeated string in a string. My string can look like this: Lorem ipsum dolor sit amet sit amet sit amet sit nostrud exercitation amit sit ullamco laboris nisi ut ...
4
votes
1answer
534 views

Computing the second (mis-match) table in the Boyer-Moore String Search Algorithm

For the Boyer-Moore algorithm to be worst-case linear, the computation of the mis-match table must be O(m). However, a naive implementation would loop through all suffixs O(m) and all positions in ...
3
votes
2answers
134 views

Would it make sense to use MemoryMappedFile to perform a search on large text files?

I'm tasked with implementing a search function that will search through several large (couple MB) log files and return the lines that contain the keywords. Log files are constantly being added to the ...
3
votes
8answers
437 views

what's the fastest way to scan a very large file in java?

Imagine I have a very large text file. Performance really matters. All I want to do is to scan it to look for a certain string. Maybe I want to count how many I have of those, but it really is not ...
3
votes
2answers
128 views

php find string

how to find if this string : 132,139,150,166,176 is in this one? : 132,139,150,166,176,131,140,151,165,175
3
votes
1answer
200 views

String searching algorithms

For the two string searching algorithms: KMP and suffix tree, which is preferred in which cases? Give some practical examples.
3
votes
6answers
664 views

“tailing” a binary file based on string location using bash?

I've got a bunch of binary files, each containing an embedded string near the end of the file but at different places (only occurs once in each file). I need to extract the part of the file starting ...
2
votes
2answers
66 views

Matching multiple strings to one long string using patterns

I have a line of DNA code and I'm trying to use a Java regex expression to match the codon (3 letter sequence) to an amino acid. Below is an example of one of the patterns: Pattern A = ...
2
votes
1answer
80 views

AppEngine Approximate Partial String Matching Algorithm

So, I realize that this covers a wide array of topics and pieces of them have been covered before on StackOverflow, such as this question. Similarly, Partial String Matching and Approximate String ...
2
votes
3answers
155 views

Mathematica - Specify Column and Row of a String Search

Because I'm working with a very complex table with nasty repeated values in variable places, I'd like to do a string search between specific rows and columns. For example: table={{"header1", ...
2
votes
3answers
221 views

Objective-C jumbled letters solver

I am trying to create this app on the iphone that given 6 letters, it would output all the possible 3-6 letter english words. I already have a dictionary, I just want to know how to do it. I ...
2
votes
2answers
178 views

extract strings from a binary file in python

I have a project where I am given a file and i need to extract the strings from the file. Basically think of the "strings" command in linux but i'm doing this in python. The next condition is that the ...
2
votes
3answers
162 views

Search specific string and return whole line

What I would like to do is find all instances of a string in a text file, then add the full lines containing the said string to an array. For example: eng GB English lir LR Liberian ...
2
votes
3answers
518 views

Boyer Moore Algorithm Understanding and Example?

I am facing issues in understanding Boyer Moore String Search algorithm. I am following the following document. Link I am not able to work out my way as to exactly what is the real meaning of delta1 ...
2
votes
2answers
187 views

PHP Array values in string?

I have been looking around for a while in the PHP manual and can't find any command that does what I want. I have an array with Keys and Values, example: $Fields = ...
2
votes
3answers
80 views

stripos returns false when special characters is used

I am using the stripos function to check if a string is located inside another string, ignoring any cases. Here is the problem: stripos("ø", "Ø") returns false. While stripos("Ø", "Ø") returns ...
2
votes
1answer
309 views

Does KMP algorithm peforms less comparisons than the simplified Boyer-Moore algorithm?

Does KMP(Knuth–Morris–Pratt) algorithm perform fewer comparisons than the simplified Boyer-Moore algorithm?
2
votes
4answers
693 views

String searching algorithms in Java

I am doing string matching with big amount of data. EDIT: I am matching words contained in a big list with some ontology text files. I take each file from ontology, and search for a match between ...
2
votes
2answers
80 views

Way to implementing Search functinality on a Window

I am working on a (WPF + C#) application. I have to implement search functionality. It will allow to search all the occurrences of a particular string on the specific part of Window. What can be the ...
2
votes
3answers
239 views

String Occurrence Counting Algorithm

I am curious what is the most efficient algorithm (or commonly used) to count the number of occurrences of a string in a chunk of text. From what I read, the Boyer–Moore string search algorithm is ...
1
vote
2answers
86 views

String search algorithm that returns recursive matches - Java

The Rabin-Karp search algorithm is working fine but can anyone help to guide me in modifying it to a recursive search? http://algs4.cs.princeton.edu/53substring/RabinKarp.java.html . For example: * ...
1
vote
4answers
57 views

Look for part of a string in an array?

i'm looking for an efficient way to look for certain words, would i use switch/case, int/string.IndexOf('!'); foreach loop/contains? i have a string that i'm receiving from a client. so, let's say i ...
1
vote
2answers
75 views

Implement “Did you mean?” with Core Data

I'm working on an iOS app. I have a Core Data database with a lot of company names. When the user insert a company name that does not exist, I would like to show "similar" company names. For example, ...
1
vote
1answer
95 views

Rabin-Karp string search algorith

My previous question pertained to the general string search algorithm. I am researching on Rabin-Karp algorithm and I have a function template like RabinKarpMatch(char *Text, char *Search_phrase,int ...
1
vote
3answers
52 views

Count pair of start and closing character within a string?

Let's say I have the string: You are pretty <lady> but that <girl> is prettier <than> you. Sorry about the English but how could I count how many <> there are in the above ...
1
vote
3answers
142 views

Change foreign characters to normal equivalent

I am using php and I was wondering if there was a predefined way to convert foreign characters to their non-foreign alternatives (sorry not meaning to offend anyone). Characters such as êëé all ...
1
vote
2answers
99 views

Heuristic to predict Name or Company

Problem We are recieving strings and they may either represent a company name or a person's name. We need a heuristic to determine this. Initial thoughts Use an XML doc with either node Commercial ...
1
vote
3answers
634 views

Partial string search in boost::multi_index_container

I have a struct to store info about persons and multi_index_contaider to store such objects. Mult-index uses for search by different criteria. I've added several persons into container and want to ...
1
vote
1answer
170 views

String searching algorithm for Chinese characters

There are Python code available for existing algorithms for normal string searching e.g. Boyer-Moore Algorithm. I am looking to use this on Chinese characters and it doesn't seem like the same ...
0
votes
3answers
76 views

Replace string.Split with other constructs - Optimization

Here I am using Split function to get the parts of string. string[] OrSets = SubLogic.Split('|'); foreach (string OrSet in OrSets) { bool OrSetFinalResult = false; if (OrSet.Contains('&')) ...
0
votes
2answers
25 views

Finding the number of lines & characters by which an index was shifted upon string change

Is there some algorithm(or its JavaScript implementation) to find the amount of shift in a word's position when the string containing the word was changed? My project is an online editor based on ...
0
votes
3answers
176 views

Most efficient way to get current word from char array

Say I have a string "text", a caret position "caret" and then want to find the current word (seperated by space). The way I'm currently doing it seems inefficient and I was wondering if anyone had a ...
0
votes
4answers
195 views

for string, find and replace

Finding some text and replacing it with new text within a C string can be a little trickier than expected. I am seaching algorithm which is fast ,that is time complexitiy is so small. Feel free, when ...
0
votes
2answers
63 views

Search a file and migrate search term is in to a new file

This code enables to create a new .txt file, if the file doesn't exist yet, it will create the file. <?php $file = 'people.txt'; // Open the file to get existing content $current = ...
0
votes
1answer
468 views

Optimizing a lot of Scanner.findWithinHorizon(pattern, 0) calls

I'm building a process which extracts data from 6 csv-style files and two poorly laid out .txt reports and builds output CSVs, and I'm fully aware that there's going to be some overhead searching ...
0
votes
1answer
376 views

How to match the word exactly with regex?

I might be asking this question incorrectly but what I would like to do is the following: Given a large String which could be many 100s of lines long match and replace a word exactly and make sure it ...