Part of a string, or the function/method that returns part of a string

learn more… | top users | synonyms

202
votes
3answers
6k views

If strings are immutable in .NET, then why does Substring take O(n) time?

Given that strings are immutable in .NET, I'm wondering why they have been designed such that string.Substring() takes O(substring.Length) time, instead of O(1)? i.e. what were the tradeoffs, if any? ...
58
votes
3answers
28k views

String contains string in objective-c

How can I check if a string (NSString) contains another smaller string? I was hoping for something like: NSString *string = @"hello bla bla"; NSLog(@"%d",[string containsSubstring:@"hello"]); But ...
41
votes
10answers
2k views

What is the fastest substring search algorithm?

OK, so I don't sound like an idiot I'm going to state the problem/requirements more explicitly: Needle (pattern) and haystack (text to search) are both C-style null-terminated strings. No length ...
20
votes
7answers
257 views

Why doesn't string.Substring share memory with the source string?

As we all know, strings in .NET are immutable. (Well, not 100% totally immutable, but immutable by design and used as such by any reasonable person, anyway.) This makes it basically OK that, for ...
12
votes
6answers
879 views

Substring algorithm suggestion

I have a large set (100k) of short strings (not more than 100 chars) and I need to quickly find all those who have a certain substring. This will be used as a search box where the user starts typing ...
12
votes
9answers
14k views

How do I check if a C++ <string> starts with a certain string, and convert a substring to an int?

How do I do the following (Python pseudocode) in C++? if argv[1].startswith('--foo='): foo_value = int(argv[1][len('--foo='):]) (For example, if argv[1] is '--foo=98', then foo_value is 98.) ...
12
votes
2answers
25k views

How to split string into substrings on iPhone?

I received an nsstring from the server. Now I want to split it into the substring I need. How to split the string? For example: substring1:read from the second character to 5th character ...
11
votes
6answers
1k views

What's the most efficient way to find one of several substrings in Python?

I have a list of possible substrings, e.g. ['cat', 'fish', 'dog']. In practice the list contains hundreds of entries. I'm processing a string, and what I'm looking for is to find the index of first ...
10
votes
3answers
866 views

Time complexity of Java's substring()

What is the time complexity of the String#substring() method in Java?
9
votes
3answers
461 views

What is the difference between substr and substring?

What is the difference between alert("abc".substr(0,2)); and alert("abc".substring(0,2)); They both seem to output “ab”.
9
votes
2answers
6k views

LINQ: Group by month and year within a datetime field

I have a table with a datetime field. I want to retrieve a result set grouped by the month/year combination and the number of records that appear within that month/year. How can this be done in ...
8
votes
4answers
524 views

Comparison of substring operation performance between .NET and Java

Taking substrings of a string is a very common string manipulation operation, but I heard that there might be considerable differences in performance/implementation between the Java and .NET platform. ...
8
votes
5answers
460 views

Substring search algorithms (very large haystack, small needle)

I know there are already several similar questions here, but I need some recommendations for my case (couldn't find anything similar). I have to search a very large amount of data for a substring ...
8
votes
11answers
882 views

Finding numerical substrings mathematically, without string comparison

This originally was a problem I ran into at work, but is now something I'm just trying to solve for my own curiosity. I want to find out if int 'a' contains the int 'b' in the most efficient way ...
7
votes
4answers
1k views

iPhone CoreText: Find the pixel coordinates of a substring

Here's a screenshot of the twitter app for reference: http://screencast.com/t/YmFmYmI4M What I want to do is place a floating pop-over on top of a substring in an NSAttributedString that could span ...
7
votes
1answer
2k views

Remove Trailing Slash From Batch File Input

I have a batch file that I want to improve. Instead of requiring a user to provide a folder path without a trailing slash, is there an easy way for me to just remove the last character from the path ...
6
votes
3answers
123 views

Which C# data structure allows searching a pair of strings most efficiently for substrings?

I have a data structure which consists of pairs of values, the first of which is an integer and the second of which is an alphanumeric string (which may begin with digits): ...
6
votes
3answers
98 views

Algorithm used in Ruby for “String#include?”

Is anyone able to pinpoint which algorithm is used for the include? method in Ruby? For example "helloworld".include?("hello")
6
votes
8answers
580 views

Find substring ignoring specified characters

Do any of you know of an easy/clean way to find a substring within a string while ignoring some specified characters to find it. I think an example would explain things better: string: "Hello, ...
6
votes
9answers
530 views

When getting substring in .Net, does the new string reference the same original string data or does the data get copied?

Assuming I have the following strings: string str1 = "Hello World!"; string str2 = str1.SubString(6, 5); // "World" I am hoping that in the above example str2 does not copy "World", but simply ...
6
votes
4answers
15k views

How can I find a substring within a string using Perl?

I have a string from which I wish to extract a single word, but with a numerical appended to it, which might be different in each line: This is string1 this is string This is string11 This is ...
5
votes
3answers
164 views

Generating combinations of substrings from a string

I'm trying to is generate all possible syllable combinations for a given word. The process for identifying what's a syllable isn't relevant here, but it's the generating of all combinations that's ...
5
votes
5answers
81 views

how to remove chars into a string?

I have a lot of strings, and I need to delete '0' at start of string, but what is the better way to do it, because this is an example of strings: 0130799.jpg //I need to get 130799 0025460.jpg //I ...
5
votes
3answers
163 views

String truncate on length, but no chopping up of words allowed

I want to limit a string field length in MYSQL on a certain length, but I don't want any chopping up of words to occur. When I do: SELECT SUBSTRING('Business Analist met focus op wet- en ...
5
votes
10answers
211 views

Fast C comparison

As part of a protocol I'm receiving C string of the following format: WORD * WORD Where both WORDs are the same given string. And, * - is any string of printable characters, NOT including spaces! ...
5
votes
4answers
164 views

How do I select noncontiguous characters from a string of text in MySQL?

I have a table with millions of rows and a single column of text that is exactly 11,159 characters long. It looks like this: 1202012101...(to 11,159 characters) 1202020120... 0121210212... ... (to ...
5
votes
2answers
226 views

Algorithm for finding first repeated substring of length k

There is a homework I should do and I need help. I should write a program to find the first substring of length k that is repeated in the string at least twice. For example in the string "banana" ...
5
votes
3answers
944 views

Slice a string in groovy

I have a 18 character string I want characters 2-8 from. In python I can do this: sliceMe = "nnYYYYYYnnnnnnnnnn" print sliceMe[2:8] prints YYYYYY I am looking for a way to do this same thing in ...
5
votes
4answers
459 views

Aho-Corasick and Proper Substrings

I'm trying to understand the aho-corasick string match algorithm. Suppose that our patterns are abcd and bc. We end up a tree like this [] /\ [a]..[b] / : | [b].: [c] | ...
5
votes
2answers
152 views

Search for (Very) Approximate Substrings in a Large Database

I am trying to search for long, approximate substrings in a large database. For example, a query could be a 1000 character substring that could differ from the match by a Levenshtein distance of ...
5
votes
9answers
1k views

how to substring from a string using c#?

string format is always like this "FirstName=ABC;LastName=XZY;Username=User1;Password=1234". I need the only UserName value (which is 'User1' in this case). I wanna achieve this in minimum line of ...
5
votes
8answers
6k views

Number of occurrences of a substring in an NSString?

How can I get the number of times an NSString (for example, @"cake") appears in a larger NSString (for example, @"Cheesecake, apple cake, and cherry pie")? I need to do this on a lot of strings, so ...
5
votes
3answers
3k views

javascript substring

the most darndest thing! the following code prints out 'llo' instead of the expected 'wo'. i get such surprising results for a few other numbers. what am i missing here? ...
5
votes
7answers
4k views

Find the nth occurrence of substring in a string

This seems like it should be pretty trivial, but I am new at Python and want to do it the most Pythonic way. I want to find the n'th occurrence of a substring in a string. There's got to be ...
5
votes
3answers
9k views

How to see if a substring exists inside another string in Java 1.4

How can I tell if the substring "template" exists inside a String in java 1.4 It would be great if it was a non case sensitive check. Thanks!
4
votes
2answers
87 views

getting a string from a list of substrings

I asked to solve the following problem in a programming competition (facebook recruitment) Input: list of sub-strings: {"bar","foo","hi"} //from 1 to 100 sub-strings and the sentence: ...
4
votes
6answers
142 views

Trim String in Java while preserve full word

I need to trim a String in java so that: The quick brown fox jumps over the laz dog. becomes The quick brown... In the example above, I'm trimming to 12 characters. If I just use substring ...
4
votes
5answers
159 views

How to retrieve from python dict where key is only partially known?

I have a dict that has string-type keys whose exact values I can't know (because they're generated dynamically elsewhere). However, I know that that the key I want contains a particular substring, ...
4
votes
1answer
286 views

PHP: equivalent of MySQL's function SUBSTRING_INDEX ?

I love the SUBSTRING_INDEX function in MySQL, especially because you can use negative indexes to start searching from the right side of the string. Is there an equivalent of this function in PHP? ...
4
votes
2answers
110 views

Getting specific Substring from a large string

<emp> <name>Jhon</name> <sal>2000</sal> </emp> I will get this xml as string.I need to generate an xml file from the string and i need to name the generated xml ...
4
votes
3answers
473 views

How do I check if a given Python string is a substring of another one?

I have two strings and I would like to check whether the first is a substring of the other. Does Python have such a built-in functionality?
4
votes
4answers
1k views

Get String after String.indexof in c#

I am currently developing an application in C# where I need to get the substring after a certain character within the string. else if (txtPriceLimit.Text.Contains('.') && ...
4
votes
3answers
230 views

Locate “N Gram” substrings that are smallest distance away from a target string N character long

I am looking for an algorithm, preferably in Python that would help me locate substrings, N characters long, of exisiting strings that are closest to a target string N character long. Consider the ...
4
votes
6answers
8k views

How to find nth occurrence of character in a string?

Similar to a question posted here, am looking for a solution in Java. That is, how to find the index of nth occurrence of a character/string from a string? Example: "/folder1/folder2/folder3/". In ...
4
votes
1answer
275 views

Finding partial substrings within a string

I have two strings which must be compared for similarity. The algorithm must be designed to find the maximal similarity. In this instance, the ordering matters, but intervening (or missing) ...
4
votes
4answers
164 views

Regular Expression Postive Lookahead substring

I am fairly new to regular expressions and the more and more I use them, the more I like them. I am working on a regular expression that must meet the following conditions: Must start with an Alpha ...
4
votes
4answers
204 views

What is the fastest method to calculate substring

I have a huge "binary" string, like: 1110 0010 1000 1111 0000 1100 1010 0111.... It's length is 0 modulo 4, and may reach 500,000. I have also a corresponding array: {14, 2, 8, 15, 0, 12, 10, 7, ...
4
votes
3answers
414 views

C: evaluate part of the string

I cant find an expression to evaluate a part of a string. I want to get something like that: if (string[4:8]=='abc') {...} I started writing like this: if (string[4]=='a' && ...
4
votes
4answers
750 views

How can I take the first 100 characters of html content ( without stripping the TAGS! )

There are lots of questions on how to strip html tags, but not many on functions/methods to close them. Here's the situation. I have a 500 character Message summary ( which includes html tags ), but ...
4
votes
2answers
3k views

AppleScript: Index of substring in string

I want to create a function that returns a substring of a specific string from the beginning of said string up to but not including the start of another specific string. Ideas? So something like: ...

1 2 3 4 5 14