The substrings tag has no wiki summary.
0
votes
1answer
76 views
Ignoring ' (apostrophe) from RegEx
I've a RegEx and would like to ignore any ' (apostrophe) within the string. RegEx discussion can be found within the discussion String manipulation: How to replace a string with a specific pattern
...
4
votes
2answers
105 views
String manipulation: How to replace a string with a specific pattern
I've a question here related to string manipulation based on a specific pattern. I am trying to replace a specific pattern with a pre-defined pattern using C#
For eg:
Scenario # 1
Input: ...
0
votes
0answers
21 views
Add spaces to sentence based on dictionary? Java
Given a TreeSet and a String with the following function signature
public static String breakIntoStrings(String sentence , TreeSet<String> dictionary)
What is the most efficient way to return ...
-1
votes
3answers
63 views
Perl: Transfer substring positions between two strings
I'm writing a Perl programm and I've got the following problem:
I have a large list of start and end positions in a string. This positions correspond to substrings in this string. I now want to ...
0
votes
2answers
34 views
How to create substrings from input string using regex?
How to create substrings from input string using regex?
Each substring should have only 3 contigious characters in the input.
Ex:
input text="1234abc";
expected substring
output ...
-1
votes
1answer
45 views
Extracting a particular string from a complex string in Powershell
I have a string like the below which I read from a file.
...
{File}
Filecopied;Source;Destination;Archived;
...
3
votes
2answers
137 views
C# - Substring sum using tokens to identify values
What I would like to achieve is the following. I have a string which could be in the following format (just an example the actual string could be completely random):
01005010050
The above string is ...
0
votes
2answers
280 views
How to use substrings to extract text from buffered reader
I'm trying to extract text between two tags using substrings and bufferedreader but I get a indexoutofbounds exception. The if statement is used because I am parsing 5 webpages and I want to read text ...
0
votes
3answers
155 views
search for long contiguous repeated substrings
I have a string of 0s and 1s. Define a "contiguous-double" as a substring that repeats itself immediately. For example the string "011101010101110" can be broken up to "011 1010 1010 1110" which can ...
0
votes
2answers
150 views
Preserving line breaks and spacing in file IO
I am workig on a pretty neat problem challenge that involves reading words from a .txt file. The program must allow for ANY .txt file to be read, ergo the program cannot predict what words it will be ...
2
votes
5answers
184 views
Substrings of a string
How many substrings can you make out of a string like “abcd”?
For example, suppose I have a string containing the following:
'abcd'
How can I get it to look like this:
['a', 'b', 'c', 'd', 'ab', ...
0
votes
2answers
180 views
finding if one string (“AB”) is subset of another (“ABCD”)?
i had my midterm today. this was the first question. i could not solve this.
the exact requirement is as follows :
we have to determine if a string , lets say , "DA" is subset of another, "ABCD". the ...
-1
votes
5answers
61 views
php function getAllBetweenStr [duplicate]
Possible Duplicate:
Get content between two strings PHP
I am trying to create a php function that will return an array of all occurrences of text between two substrings. I am useless at ...
0
votes
0answers
17 views
Algo for finding a number of occurrences of every string from a set within a one larger string
I have a large string A and a set of relatively small strings B*.
How can I efficiently find the number of occurrences of each string from B* inside A?
I suspect that suffix tree can be used here ...
0
votes
2answers
86 views
Find common substrings
I have N strings. I'm looking to find all substrings that are at least 2 character long that occur in at least 2 strings.
For the following strings:
my name is daniel
what is your name?
they call ...
-1
votes
3answers
111 views
pointer substrings arrays
Im trying to copy part of a string to another string using pointers. My resulting string starts to copy at the correct place though it doesn't stop after exceeding the count. Also the string isn't ...
0
votes
5answers
234 views
Matching a substring of any length and characters using RegEx
I would like to be able to match and then extract all substrings in the following string using regex in c#:
"2012-05-15 00:49:02 192.168.100.10 POST /Microsoft-Server-ActiveSync/default.eas ...
0
votes
4answers
190 views
how do I speed up substr searches in my query
I am using this as a sub select (in a simple query joining 2 other tables) and as you can imagine it takes a while to run. going on 6 hours+ so far.
is this the only way to do this? I know that doing ...
3
votes
1answer
322 views
Can I generate all substrings in complexity < O(n^2)
Currently I am using two nested for loop to generate all the substrings of a string. I heard about Suffix Tree but AFAIK Suffix Tree generates suffix not the substrings. Following is the code which ...
-3
votes
2answers
65 views
Search for all substings between “+” and “n” characters [closed]
I'm trying to change some equations from input file to a "readable" form.
Currently I need to read all numerical values (as substrings, will convert them to int later) within a string P. All the ...
1
vote
1answer
257 views
Extract Random Filename Substring to Variable Output in Bash Script for FTP push and archive script
I am still a newbie to shell scripting and would like to make some backups of billing files I receive and then upload these to an FTP server directory, and upon completion archive the file into a new ...
2
votes
1answer
126 views
XSLT apply templates and string manipulate
I have some XML like so:
<subsection number="5">
<p>
(5) The <link path="123">Secretary of State</link> shall appoint such as....
</p>
...
2
votes
2answers
459 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 ...
0
votes
1answer
122 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 ...
2
votes
1answer
2k views
Python: How to check a string for substrings from a list? [duplicate]
Possible Duplicate:
Check if multiple strings exist in another string
I can't seem to find an equivalent of code that functions like this anywhere for Python:
Basically, I'd like to check ...
2
votes
2answers
224 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 ...
0
votes
4answers
156 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
184 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 ...
1
vote
2answers
87 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 ...
0
votes
3answers
95 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?
1
vote
2answers
526 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 ...
5
votes
4answers
487 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 ...
3
votes
1answer
796 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 ...
0
votes
1answer
440 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 ...
6
votes
2answers
998 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*
...
0
votes
2answers
342 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
2answers
499 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
126 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 ...
15
votes
10answers
516 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 ...
4
votes
5answers
2k 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 ...
1
vote
2answers
55 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
2answers
12k 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
440 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 ...
2
votes
1answer
129 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.
...
1
vote
3answers
374 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
346 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 ...
0
votes
5answers
3k 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
1k 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 ...
1
vote
3answers
432 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 ...
3
votes
1answer
1k 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?