Tagged Questions
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 ...
1
vote
2answers
52 views
Javascript mark substrings onchange event
I am trying to highlight substrings of a large string. The following code only highlights if the substring is the first letter of the large string. How can I fix this? Thanks in advance
function ...
0
votes
2answers
59 views
Searching words from a file in another file
I have got 2 files:
access.log.13 : a simple access log from a web server.
bots.txt : that contains spider's and crawlers names, each one in a different line, for example: googlebot mj12bot baidu ...
2
votes
3answers
49 views
search() string for multiple occurences
Say you have the string, Black cat jack black cat jack black cat jack.
How would you use search() to find the 2nd occurence of the word jack?
I'm guessing the code would look something like:
var ...
0
votes
5answers
35 views
Search Algorithm with Incomplete Input
I need an algorithm which will search an array for a string, but the string may not be exactly the same as one of the items in the array.
For example,
Array = {"Stack", "Over", "Flow", "Stake"}
input ...
1
vote
4answers
95 views
How to convert a search string to a boolean condition?
I have a search criteria stored in a string:
string Searchstr = "(r.Value.Contains("PwC") || (r.Value.Contains("Canadian") && r.Value.Contains("thrive"))) || (r.Value.Contains("Banana") ...
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
1answer
61 views
C# simple html editor - how to search and replace content
Today i'm working on simple html editor in visual c#.
My goal is to open pure html file from local drive (Opendialog load into string or load into webbrowser completed) and allow to edit key ...
0
votes
1answer
58 views
JavaScript find names in strings
What's a good JavaScript library for searching a given string for a large list of names.
For example, given a list of 1000 politicians names find every instance in a string and wrap it in a span.
...
1
vote
1answer
52 views
Searching a continuous string for matches in Python
I am trying to search through a hex dump for matching hex strings, ie in testHexData.txt there might ...
0
votes
0answers
49 views
Search string in file.ser returning multiple objects
I have a problem making a search function on my C# website, which search for a string, example a Name, in a file stored in AppData (I'm displeased that my educator is making us use files instead of ...
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 ...
-4
votes
0answers
28 views
Search and replace a string as shown in the post
I am reading a file say x.c and I have to find for the string "shared". Once the string like that has been found, the following has to be done.
Example:
shared(x,n)
Output has to be
*var = ...
-5
votes
0answers
52 views
String search algorithm? [closed]
I've been trying to find a search algorithm similar to getline except I need to search a file for a full string, not just a character. I've tried to find a way to get getline to accept a string, but ...
-1
votes
1answer
46 views
Select string from text in batch
I will give an example of what i need to do
Let's say i have this text file which contains a string
some text some text some text
some text some text some text
*****************************
Your ...
0
votes
1answer
23 views
Locate a char inside a tridimensional array of strings
I have a tri dimensional array of strings and I want to make a function to count how many strings in the matrix have the char c in the position k. I made this function:
#include <vector>
...
0
votes
1answer
47 views
unexpected T_CONSTANT_ENCAPSED_STRING, expecting T_STRING [closed]
I get this error:
Parse error: syntax error,unexpected T_CONSTANT_ENCAPSED_STRING,
expecting T_STRING in .... on line 12 of search.php
When searching for string "rhino" where I know there ...
0
votes
2answers
42 views
Using strings from one column to search inside a string in another SQL
I am trying to search inside a sentence using the string from another column in SQL. I have a large list of keywords and their rating on a scale from 1 to 6. I am trying to search through data pulled ...
3
votes
1answer
40 views
looking up strings in different columns in R
I have a dataset of 4 columns with hundreds of rows, here's a little sample:
A B C D
V1 V2 V100 V4
V15 V5 V6 V100
V8 V3 V9 V10
V3 V11 V12 V13
...
0
votes
4answers
122 views
JavaScript string search
I'm trying to search a string for any word of another string with javaScript. Let's say I have the following string that I want to search in:
"Oxford Street 100 London"
And my search term is like ...
0
votes
1answer
44 views
How can I optimize this String search/replace method?
I am implementing my own web server. The following method searches for server side includes and builds the html page appropriately.
public String getSSI(String content) throws IOException {
...
1
vote
1answer
70 views
Parent directory in Excel (no VBA)
How do I set a cell’s value to the parent of the directory the file is in?
I’ve got a tedious and repetitious task ahead of me, and I’m trying to automate as much of this as possible—but VBA isn’t ...
-2
votes
1answer
47 views
String List array search for a string
Im having problems with searching through a list array trying to find certain string and then storing that string into a variable called name
private List<String> listview_array1 = ...
2
votes
2answers
36 views
Replacing strings in one file with strings from second file
I've been searching for a couple of days but I haven't got the right answer
I have two files that look like this:
File1:
>contig-100_23331 length_200 read_count_4043
TCAG...
...
-3
votes
2answers
47 views
How to check for a number in a string using perl
I have a string in a variable $vreponse and the string is
int.force_snmp_version T_SIZE 3
All I want to do is verify if there is number 3 in the string. If the verification is success print a ...
0
votes
3answers
60 views
Python next substring search
I am transmitting a message with a pre/postamble multiple times. I want to be able to extract the message between two valid pre/postambles. My curent code is
print(msgfile[msgfile.find(preamble) + ...
0
votes
1answer
26 views
JS string search issue
Searching for a string at the start of another string works OK with this:
if ($(this).text().search(new RegExp(filter, "i")) < 0) { ...
I also want to search the second word (following a ...
0
votes
0answers
67 views
x86 program to count for number of occurance of word in a text
I am trying to write a program using x86 assembly that can count the number of occurance for a word in a text. The problem that im having is I can only search for a single character in a text.I want ...
0
votes
1answer
61 views
How Do I allow a user search for contents in a file in C?
I have a text file with different details of contacts.
It's basically like this
John Doe 024587 24th July Works From Home Lives at Home Jane Doe
024584 25th August Works from Work Lives at Work
...
2
votes
3answers
69 views
Javascript / jQuery search for letter in string
I'm using JS / jQuery (new to jQuery) and I have a string with a math problem in it, including a variable. (I'm creating a function to solve basic algebra). ie:
var $problem = "x+5=11";
// Take off ...
-1
votes
3answers
368 views
Finding a Word in a Binary Search Tree Java?
The problem I'm having is that I have a binary search three, and all of the nodes contain string values rather than integer ones. It gets these strings from a txt file and places the individual lines ...
1
vote
8answers
87 views
search a php array for string match
I have an array and I'd like to search for the string 'green'. So in this case it should return the $arr[2]
$arr = array(0 => 'blue', 1 => 'red', 2 => 'green string', 3 => 'red');
...
0
votes
2answers
83 views
Sequential String search in Java [duplicate]
Hello again stack overflow.. ers,
I have created this bit of code to sequentially search through an array to find a value, in this case a name. However i cant get it to work, it wont find the name i ...
1
vote
2answers
151 views
Inserting a string into a Binary Search Tree C
I need to insert strings into a binary search tree but each run through my insert function updates all the nodes and not just the appropriate one.
Its required that each word placed in the binary ...
0
votes
1answer
110 views
x86 assembly program to search for a word in a given text
I am trying to write a program using x86 assembly that can search for a word in a text. When the word is present in the text, the program will inform the user. I'm still having a problem in comparing ...
1
vote
1answer
35 views
Why is `sData` a non-nil value?
Execution of the code is here on eval.in
sMessage = "<hjpotter92> +help|"
local _, _, sCmd, sData = sMessage:find( "%b<>%s[%+%-%*%/%!%#%?](%w+)%s?(.*)|" )
print( _, sData, sCmd )
The ...
1
vote
1answer
35 views
Search for specific string, only copy part of string into another textfile
I want my python program to search a text file for a specific portion of a string.
For example, my text file looks like this:
VERSION_1_0001
VERSION_2_0012
VERSION_3_0391
These are just examples. I ...
1
vote
2answers
82 views
C# Finding text in a string, then extract a variable
I'm messing around with the Steam Web API. I'm trying to make a function which will find a piece of text, and then extract another piece of text, which will change, depending on the user I look up ...
0
votes
1answer
115 views
LibreOffice Calc macro text search
I need help in writing macro for LibreOffice Calc 3.6.2.2
what I trying to do is pass cell number to function, than
function analyze cell content (text string) and return value basing on this content:
...
0
votes
3answers
71 views
String in a text file containing a string in C++
here's a part from my code
string word;
cin >> word;
string keyword;
while (file >> keyword && keyword != word){}
This searches for a word in a file and if it finds that word ...
1
vote
2answers
71 views
php check string for multiple values
I am trying to build a function that I can use to to check a string for multiple values, kind of a generic find needle in haystack kind of function. I have split the values up into an array and tried ...
1
vote
3answers
56 views
Extract longest strings from sublist within list . Python
so i have a list of sublists and within the sublists, there are strings.
the strings are usually at different lengths, but can be the same length as well.
below is an example of the list
sequences ...
0
votes
5answers
82 views
In java, is there a way to search for a specific field of a class stored in a linked list?
I wrote a class that is to be stored in a linkedlist, with 3 fields in the class. One of these fields is a String, which I would like to search for in the linked list.
Example
LinkedList
Obj1
...
1
vote
1answer
115 views
Find and read specific string from config file with Pascal Script in Inno Setup
I have quite long config file and I need to extract specific strings from the file.
What I want to extract/read is InstallDir for specific number position e.g. for 20540.
I know how to find string ...
0
votes
2answers
43 views
insert tags in python string [closed]
I want to highlight search results in python:
search_term = 'highlighted'
text_string = 'A very long highlighted text'
DO THE MAGIC
print text_string
Output:
A very ...
-1
votes
1answer
78 views
dynamic search in file using c#
/*I am reading many files and getting data through File.ReadAllLines. Now I want to search in these files for a specific string written in a textbox. Whenever I put some text in the textbox it must ...
0
votes
3answers
66 views
Quickest algorithm/methods to find a varying string within a constant string?
With the title I mean that the public class declaration is always the same but the name varies:
public class <class name>
I'm wanting to search Java source code (in a JTextArea) for the public ...
0
votes
3answers
83 views
Algorithm for string processing
I am looking for a algorithm for string processing, I have searched for it but couldn't find a algorithm that meets my requirements. I will explain what the algorithm should do with an example.
There ...
0
votes
2answers
80 views
Searching a Range in Excel VBA
I have a string array, and in each slot of the array is a 'range of columns' in a string format e.g "B:J" "k:W" "AC:AG"
The method is being passed a string which is a column name e.g "C"
I need to ...
2
votes
1answer
53 views
Javascript string searching issue
I'm a self-taught amateur at JS, and thought it's time to finally register here :)
I'm trying (and failing) to write a script that takes a single string out of an array of strings, and checks if it ...





