Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
10answers
318 views

Algorithm for checking if a string was built from a list of substrings

You are given a string and an array of strings. How to quickly check, if this string can be built by concatenating some of the strings in the array? This is a theoretical question, I don't need it ...
6
votes
2answers
286 views

Efficient substring matching in perl

I am looking for an efficient solution to do find the longest possible substring in a string tolerating n mismatches in the main string Eg: Main String AGACGTACTACTCTACTAGATGCA*TACTCTAC* ...
5
votes
4answers
216 views

Descending sort of substrings by occurence - Java

Lest's say I have string: String test= "AA BB CC BB BB CC BB"; What I would like to do is create String array like this: String[]{"BB", "CC", "AA"} Since B occurred 4 times C did 2 times and A ...
4
votes
4answers
365 views

Perl regular expression removing duplicate consecutive substrings in a string

I tried to do a search on this particular problem, but all I get is either removal of duplicate lines or removal of repeated strings where they are separated by a delimiter. My problem is slightly ...
3
votes
1answer
251 views

iOS/Objective-C: Attempting to Scan a string for substrings which will be assigned to multiple NSStrings

I'm attempting to complete the Stanford iPhone Programming (FA10) assignement "Flickr Fetcher" -- so far things are going well, however I have come to an impasse: I have successfully extracted the ...
3
votes
1answer
662 views

utility to find longest possible repeated strings

Is there any tool or utility or perl/python script that can find longest repeated substrings in a large text file and print those patterns and the number of times each pattern occurs?
3
votes
5answers
376 views

Pythonic way of searching for a substring in a list

I have a list of strings - something like mytext = ['This is some text','this is yet more text','This is text that contains the substring foobar123','yet more text'] I want to find the first ...
2
votes
2answers
91 views

Need help optimizing a program that finds all possible substrings

I have to find all possible, unique substrings from a bunch of user-input strings. This group of substrings has to be alphabetically sorted without any duplicate elements, and the group must be ...
2
votes
1answer
92 views

Python: How to check a string for substrings from a list?

I can't seem to find an equivalent of code that functions like this anywhere for Python: Basically, I'd like to check a string for substrings contained in a list.
2
votes
2answers
42 views

using Regular Expressions in PHP to return part of a string

I'm trying to retrieve only the version number out of a string, but the strings aren't formatted in a specific. For example, the strings may be written in (but not limited to) any of the following ...
2
votes
1answer
100 views

find/highlight common substrings between two buffers in Emacs

Can somebody tell me how to highlight common substrings between two buffers in Emacs? I can write a script to do that but was wondering if there was a built-in macro in Emacs by which I can do this. ...
2
votes
3answers
706 views

Split a large string into multiple substrings containing 'n' number of words via python

Source text: United States Declaration of Independence How can one split the above source text into a number of sub-strings, containing an 'n' number of words? I use split(' ') to extract each word, ...
1
vote
0answers
30 views

Finding smallest set of sub-strings within length contraints… NP-hard or EXPTIME

I have a string (s). I need to find the smallest set of substrings of s such that no substring is shorter than l, longer than L, overlaps it's predecessor by less than o or more than O and that the ...
1
vote
2answers
43 views

string conversions and substrings in Ruby have me baffled

I am trying to learn ruby(1.8.7). I have programmed in php for some time and I consider myself proficient in that language. I have a book which I reference, and I have looked at many introductory ruby ...
1
vote
2answers
81 views

regular expression to find all substrings inside double quotes php

I have a big database that has fields of paragraphs that are formatted like this: ["This is the first sentence", "This is the second sentent", "This is the third sentence", "This is the fourth ...
1
vote
2answers
40 views

Xsl subtrings with pattern

I would like to retrieve a value of my xml file with a xsl template but I have no idea how to retrieve these value... I have this XML file <BlastOutput_iterations> <Iteration> ...
1
vote
3answers
163 views

sed regex, work on substrings and not on whole line

suppose to have the following string: commandone{alpha} commandtwo{beta} {gamma}commandthree commandtwo{delta} and I want to abtain: commandone{alpha} beta {gamma}commandthree delta well I'm ...
1
vote
1answer
115 views

generating all the covering substrings of a string

How do you the following: given a string, generate all the possible ways to parse that string into substrings (time is important, space dont' care). For example, given the string ABCD, I need to ...
1
vote
3answers
288 views

Python: Need to replace a series of different substrings in HTML template with additional HTML or database results

Situation: I am writing a basic templating system in Python/mod_python that reads in a main HTML template and replaces instances of ":value:" throughout the document with additional HTML or db ...
0
votes
1answer
84 views

Why isn't my string splitting like it should?

I'm working on a project of splicing an inputted string of a name, and for some reason it's not working. Part of it is code copied from my book that supposedly works, so I'm stuck. Am I doing ...
0
votes
0answers
31 views

Getting substring from arraylist of strings

I am having trouble getting these substrings from an arraylist of strings. Basically, in the list I have the following: 1 book at 12.49 1 music CD at 14.99 1 chocolate bar at 0.85 But I only need the ...
0
votes
4answers
72 views

Python string compare issue

I've got some code that looks like this: valid = set() for string in substrings: for line in dictionary_words: if string in line: valid.add(string) ...
0
votes
2answers
97 views

string-match problem

EDIT 2: I managed to find the solution with suffix trees Tree::Suffix perl package. Thanks to MarcoS for the trie idea. I figured out from that, that suffix trees could be used as well. The ...
0
votes
3answers
47 views

How to get both the start and end positions of regex matches in JavaScript?

I just wish to find the start and end positions of the substrings I am searching for. Any Ideas as to how this can be done?
0
votes
1answer
118 views

Parse an xml in C using string functions

I have an xml file which I have to read and parse to find out one value. I have this value mentioned within tags at two places in the file as follows: <length>xx</length> <length ...
0
votes
2answers
146 views

Help with this ragged array/substring program in C?

so, I have a ragged array (called names) of length 200. each pointer in the array points to a string that is no longer than 50 characters and has no white spaces. I also have a string given through ...
0
votes
1answer
67 views

finding the left substring is equal to right substring

Write a function which given a string S returns the index (counting from 0) of character such that the substring on its left is a reversed susbstring on its right (or -1 if such an index does not ...
0
votes
3answers
60 views

Distance Between 2 Substrings

How can I find the distance between two substrings values in a given string? For example, if I have the word terrific, and I wanted to find the distance between the "i"s (1 space apart). Thanks for ...
0
votes
2answers
2k views

split a string using a string as delimiter in awk

System : Solaris I am trying to split a string using the delimiter as another string For example: The main string is : /as/asdasd/asdasd/root/asdqwe/asd/asssdd/ I wanna split this into two part ...
0
votes
3answers
200 views

Parsing a path in Actionscript 3?

I'm using a URLLoader to load a photo and I want to be able to display the filename of the photo based on the URLLoader's loaderInfo.url property. Given a loader named photoLoader, what the string ...
0
votes
5answers
385 views

how to substitute part of a string in python?

How to replace a set of characters inside another string in Python? Here is what I'm trying to do: let's say I have a string 'abcdefghijkl' and want to replace the 2-d from the end symbol (k) with A. ...
0
votes
4answers
398 views

comparing actual IP with partial IP in PHP

Using PHP I'd like to compare an actual ip address to part of one, and see if it matches. For example I want to see if the address matches 12.34.. <?php $rem_address = getenv('REMOTE_ADDR'); $temp ...