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

learn more… | top users | synonyms

0
votes
2answers
41 views

Fail to use a substring to print out part of a sentence

The basic algorithm is I have an input file which has number of sentences, each sentence is on each line.I want to print out part of a sentence from position s to e but with this code below, it ...
1
vote
1answer
23 views

Joining Table with substring condition

I Have two tables : create table t1( id int unsigned not null auto_increment, group varchar(3) not null, number int unsigned zerofill, used enum('YES','NO') default ); id group number used 1 ...
2
votes
2answers
37 views

sed copy substring from fixed position and copy it in front of line

I'm dealing with many csv files and I can't find a way with sed to select a substring at a fixed position (chars 9-16) and copy it at the beginning of the line. This is what I have: ...
0
votes
1answer
11 views

PHP - variabel using substr() cant be extended

I'm busy creating an account-system. The user gives his first name & last name. I create a record in my database with the first letter of their first name and their full last name. To get their ...
0
votes
1answer
17 views

Using Substr in a While loop for multiple products

I am trying to show only part of my items details and have implemented substr into my while loop. However it works for my first product, but my second product only shows the '...' and not the first 7 ...
0
votes
2answers
23 views

Replacing characters at specific positions in strings in Oracle

I'm trying to write a function that can decode a message by switching pairs of characters around. Say I have the message hello! which, when encoded, turns into ehll!o. Is there an existing function ...
0
votes
2answers
26 views

Find substring from string in sql

I am using SQL SERVER 2008.I have following string in sql. DECLARE @stringRTF VARCHAR(MAX) set @stringRTF = '{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Tahoma;}} ...
1
vote
5answers
91 views

Extract substrings of a filename

In C/C++, how can I extract from c:\Blabla - dsf\blup\AAA - BBB\blabla.bmp the substrings AAA and BBB ? i.e. extract the parts before and after - in the last folder of a filename. Thanks in advance. ...
1
vote
1answer
58 views

Regex that will match the longest possible substring of a string1 with the string2 [duplicate]

I have two strings a and b with me. I want a regular expression pattern such it will match the longest possible substring of b with a from the beginning of a. For example, a = "aaaabaaa" b = "aaazb" ...
0
votes
2answers
41 views

Extract number on string and use as filter

I would like to extract a number in a string and use it as a filter. My data looks like this: AAAA_01_01_AAA BBBB_01_02_BBB CCCC_01_03_CCC DDDD_01_04_DDD I would like to extract the 2nd set of ...
0
votes
2answers
37 views

How do I search a field for a substring?

Number1 Number2 Info1 1) 19124451932~18374913342~0- 9124441932 2) 18436889349~17064219321~0- 2024281123 3) 13352808654~19703842247~0- 9703842247 I'm looking for an if-clause which ...
-2
votes
4answers
66 views

How to Substring a NSString in iOS?

How can I remove all dollar($) symbols from my NSString? amountDataArray = [[NSMutableArray alloc] initWithObjects:@"$ 10", @"$ 20", @"$ 30", @"$ 40", @"$ 50", @"$ 60", nil]; I am ...
0
votes
0answers
41 views

Horspool's method Vs. Java's contains method for String matching. Is Horspool's method always slower?

So I wrote Horspool's algorithm for String/pattern matching in java. My code is written below. . . public static boolean horspool(final String str, final String pattern) { //assumed key.length() ...
0
votes
1answer
31 views

When Statments with LIKE and Substrings

I am in school and trying to figure out this question asked by the instructor. I have not asked the instructor because he usually gets back to me 2 weeks down the road. Here is what the questions is ...
-1
votes
2answers
61 views

Weird behavior with indexof method in c# [closed]

I have this code, where entities is a List <String> received by parameter. I tried to cast entities[x] to string in any way possible, even it already being a string. I also checked entities[x] ...
1
vote
2answers
67 views

Javascript text highlight function

Scenario I am trying to develop a Javascript text highlight function. It receives in input a text to search inside, an array of tokens to be searched, a class to wrap the found matches: var fmk = ...
0
votes
5answers
51 views

how to extract a whole sentence by a single word match in a string?

So I have got a whole string (about 10k chars) and then searching for a word(or many words) in that string. With regex(word).Matches(scrappedstring). But how to do so to extract the whole sentence, ...
1
vote
1answer
44 views

Check whether string contains sub string, without using the java predefined methods

I need to find whether a given sub string contains within a given string.But the constraint is I cannot use any predefined Java methods. I have tried as follows. public void checkAvailability() { ...
0
votes
2answers
32 views

TSQL find records with different writing in another table

I have a "MasterTable" with the following records: MasterTable: Col1 PX02894 PX02895 PX02896 PX02897/98 From the lookup table I want to get the Col2 links, keeping the formatting of the ...
0
votes
2answers
126 views

Android Bug? : String.substring(5).replace(“”, “”) // empty string

Here is my code: String str = "just_a_string"; System.out.println("]" + str + "["); System.out.println("]" + str.replace("", "") + "["); System.out.println("]" + str.substring(5) + "["); ...
0
votes
2answers
56 views

How to return part of string after a certain character?

If you look at the jsfiddle from question, var str = "Abc: Lorem ipsum sit amet"; str = str.substring(str.indexOf(":") + 1); This returns all characters after the :, how can I adjust this to return ...
0
votes
0answers
70 views

Weird behaviour for String.substring(5).replace(“”, “”) // empty string [duplicate]

Note: i am having this problem on my Android project, in Eclipse. Here is my code: String str = "just_a_string"; System.out.println("]" + str + "["); System.out.println("]" + ...
0
votes
0answers
18 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
vote
3answers
128 views

Finding length of substring

I have given n strings . I have to find a string S so that, given n strings are sub-sequence of S. For example, I have given the following 5 strings: AATT CGTT CAGT ACGT ATGC ...
1
vote
2answers
45 views

at a specific startindex check for space if any is found remove that specific space the text after it and add “…”

I have a bunch of title texts that get generated they all have different .Length but at a specific startindex of the string I want to find the closest space and then remove the text after it and also ...
1
vote
2answers
70 views

Common substring of length k

I'm trying to write a function that gets 2 strings and an integer 'k' and returns a common substring of both the strings of length k. (If there is more than 1, it returns one at random). There are ...
0
votes
3answers
23 views

How can I pull data out of this string with PHP? Using RegEx?

Here is the string I have from a server: 70.90.184.9 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 The data I need pulled ...
1
vote
2answers
39 views

Regex to match numbers separated by dash (-) and get substring

I have a lot of image files in a directory with their ID between some descriptions about what it contains. This is an example of the files in that directory: de-te-mo-01-19-1084 moldura.JPG, ...
1
vote
3answers
12 views

Javascript alert sum of substrings found with for()

I am trying to count the amount of 'a' letters in a variable, and something is not working: The js code is : function verChars() { var z = document.getElementById("num").value; var y = 0; ...
0
votes
1answer
35 views

How to search a html file for substring in PHP?

I have this script to open a web page and count every line with an img tag. However, it is not working. Could help me to find out the problem with the script? This array should hold info of every ...
2
votes
2answers
77 views

Improving my Java method containsSubstring(s1, s2) which finds if s2 is a substring of s1

I am a college student that was recently interviewed for an internship position. One of the things asked of me was to write a method that took two Strings as input and returned true if the second ...
3
votes
4answers
45 views

In file, if line contains substring, get all of the line from the right

I have a file. Each line looks like the following: [00000] 0xD176234F81150469: foo What I am attempting to do is, if a line contains a certain substring, I want to extract everything on the right ...
0
votes
0answers
13 views

String searching

I have a general approach question... I writing a program that reads in three columns of data and stos them in a container to represent a store item number, description, and price. W The descriptions ...
0
votes
0answers
25 views

Solr:WordDelimiterFilterFactory for substrings of a camelcase word

I want to implement an Autocomplete-feature with Solr that work for source code identifiers in CamelCase. I use an EdgeNGramFilterFactory together with WordDelimiterFilterFactory to split CamelCase ...
-1
votes
3answers
47 views

java substring and charAt returns “” and exception respectivly while readng the last character

public class StringDemo{ public static void main(String[] args) { String str = "this:"; int a = str.indexOf(":"); // returns 4 String subStr = str.substring(a+1); // returns ...
1
vote
3answers
52 views

Get first N characters from string without cutting the whole words

I want to know if there an easy way to get only N symbols from string without cutting the whole words. For example, I have products and products descriptions information. The description length is ...
0
votes
0answers
50 views

What is the best sub string making method?

I need to develop a search program for search specific content in the database. Then part of the matched content should be shown as a brief search result. Here is my approaches to make the sub string ...
-2
votes
1answer
28 views

Extracting items inside a string [closed]

I want to extract Hello world inside a particular string currently i am getting first and last Occurences.there are 3(three) hello world text inside a string i want them on each particular string. ...
0
votes
3answers
27 views

Remove a tag and content of it by substring and indexof in javascript

i want to convert this: <html> s <RB:Block_Left>sss</RB:Block_Left> s hello </html> to this, <html> s s hello </html> and this code must be in the textarea ...
0
votes
1answer
28 views

How Does VBA's InStr React When There Are Two of What You Search For?

I have a string where I want to get the first two characters following the first period of a string because the prefix before varies so I can't used MID. I was thinking of using InStr, but how does ...
0
votes
0answers
19 views

how to show data in next line of datagridview which fetch from datable using regex

hi i have a list of string in which i have few name in the same line. When i use my code i got all name in the same line what i want is to show first user in first row of datagrid and second user in ...
-1
votes
2answers
85 views

Simple C++ Substring Issue [closed]

The program does not properly find the substrings of each section of the name "John Fitzgerald Kennedy", and cannot output each name on a separate line. The program outputs a out of range exception ...
1
vote
1answer
42 views

NSString characterSetWithCharactersInString returns empty strings

I'm trying to break a string into the comma separated components. Somehow my string containing 25000 components always returns 25,500 values, 500 of which are empty strings. Here's what my code ...
0
votes
2answers
38 views

PostgreSQL substring

I have a function and I want to get a string between two strings where the first one is "Start" and the second one is the new line character. I mean: From "Start blablabla \n" I only want ...
2
votes
4answers
49 views

More than one IndexOf possibilities

I am looking for a way to parse a substring with a few different terminating characters that could possibly be used. Should I be using a different method or is there a way to use regular expressions ...
0
votes
2answers
40 views

substring of String and stroing in char

I am taking substring from a string and have to store each character in an Arraylist. For Example given String is String s= "abc"; I took ArrayList and in for loop stored got a b c as ...
2
votes
2answers
34 views

What's the correct Xpath substring for selecting date in a phrase?

I need to use Xpath to select the date from the following string: 44kb - Mr John Doe - 1/1/13 I don't believe you can select the third iteration of the '-' for something like ...
1
vote
1answer
21 views

Using IndexOf and/Or Substring to parse data into seperate columns

I am working on migrating data from one database to another for a hospital. In the old database, the doctor's speclialty IDs are all in one column (swvar_specialties), each seperated by commas. In the ...
0
votes
1answer
19 views

Update using Substr in SQL

I need to change the first four digits in a field. Here is my sql: update [SRT-HR-DW].[dbo].[FACT_PAYROLL] set substr(EMPLOYEE_ID,1,5) = 'E1304' where substr(EMPLOYEE_ID,1,5) like 'E1302%'; can ...
0
votes
0answers
4 views

Find right string for frequency from a host of input values using regex

I have a input frequency value coming from multiple sources along with the model name of electrical equipment. I need to strip out the frquency value from the model name. Looking for a regex solution ...

1 2 3 4 5 31