The startswith tag has no wiki summary.
0
votes
0answers
11 views
Union - Contains + StartsWith + EndsWith
I have a situation where I need to join in one search Contains, StartsWith and EndsWith.
Searching for:
*Wilton - Brings everything that start´s with Wilton
Wilton* - Brings everything that end´s ...
0
votes
3answers
46 views
Oracle “Starts With” query without blanks
I am having some trouble. I am trying to build a SQL query that uses "starts with" logic. A little background first...
In the database that I've been tasked to write reports from, there is a "user" ...
0
votes
6answers
75 views
abnormal string list behaviour in python [duplicate]
print difflist
for line in difflist:
if ((line.startswith('<'))or (line.startswith('>')) or (line.startswith('---'))):
difflist.remove(line)
print difflist
...
0
votes
1answer
95 views
Java .startsWith optimization
So I got a question. Today I started optimizing my code and got to this point for example:
return !this.message.startsWith("/");
Well follow where I took my optimization tips from here (linked to ...
3
votes
5answers
73 views
Extension of StartsWith that searches in all words
Is there an extension of string's StartsWith that it searches at the start of every word in the string?
Something like:
"Ben Stiller".StartsWithExtension("Sti") returning true
I want this so I can ...
8
votes
1answer
171 views
“aaaa”.StartsWith(“aaa”) returns false
If this is not a bug, can anyone then explain the reason behind this behavior? Indeed it seems that every odd number of letters will return false:
string test = "aaaaaaaaaaaaaaaaaaaa";
...
0
votes
3answers
128 views
Efficient use of 'Directory.GetFiles' with 'StartsWith', 'Contains' and 'EndsWith' to filter file names
Is there a more efficient way to filter file names using Directory.GetFiles and 'StartsWith', 'Contains' and 'EndsWith' with rather than the way I am currently doing it?
_files = ...
1
vote
1answer
91 views
Compare two strings in java, how to print equals words
In java I got 2 strings (each contains a list of words for example ab,ac,ad,bb,bc,bd and second string which contains user input (for example word "a") I want to compare those 2 strings and get text ...
0
votes
1answer
106 views
Entity Framework 5.0 L2S Contains, StartsWith, EndsWith not working because of extra quotes
I have a simple request that filters the data, orders it and pages coming from an jQuery
AutoComplete embedded in the toolbar of a Kendo Grid. Here is the code making the call.
Service.Get(s=> ...
1
vote
2answers
83 views
Lucens best way to do “starts-with” queries
I want to be able to do the following types of queries:
The data to index consists of (let's say), music videos where only the title is interesting.
I simply want to index these and then create ...
0
votes
0answers
10 views
Define only certain files to be opened with certain software
I have some .php files, Some of them i want to be opened automatically by notepad++, So i go to properties then change the open with value, The problem is that all my .php files is now automatically ...
0
votes
3answers
76 views
Issues with DollarSigns and StartsWith() java
I have searched through-fully all the sides of Stackoverflow and Google, and found nothing to help my problem.
Why is it that this code:
if((w.startsWith("\\$", 0) || (w.startsWith("\\$", 1))){
}
...
4
votes
3answers
755 views
Case-insensitive string startswith in Python
Here is how I check whether mystring begins with some string:
>>> mystring.lower().startswith("he")
True
The problem is that mystring is very long (thousands of characters), so the lower() ...
0
votes
1answer
99 views
Java - How to efficiently show words from a words list as you type
I made a small Java program that loads a words list from a txt file which user chooses and stores it word-by-word in a TreeSet.
Now I need to write a function that, whenever user types something into ...
34
votes
5answers
1k views
Why is startswith slower than slicing
Why is the implementation of startwith slower than slicing?
In [1]: x = 'foobar'
In [2]: y = 'foo'
In [3]: %timeit x.startswith(y)
1000000 loops, best of 3: 321 ns per loop
In [4]: %timeit x[:3] ...
2
votes
3answers
109 views
startsWith(String) method and arrays
So, first of all this is homework, so if you like you can tell me to bugger off, but i really need some help.
I'm really rather new to java programming, have only been programming for ~2 months in a ...
2
votes
3answers
330 views
How to form an Endeca query where a field must start with certain letters
Is it possible to form an Endeca query to retrieve a field that must start with certain letters? Say like get all users who's first letter is A? I checked with Range filters but it is supporting only ...
2
votes
1answer
133 views
If any item of list starts with string?
I'm trying to check is any item of a list starts with a certain string. How could I do this with a for loop? IE:
anyStartsWith = False
for item in myList:
if item.startsWith('qwerty'):
...
1
vote
1answer
130 views
Go StartsWith(str string)
Is there a StartsWith(str1, str2 string) function that can check if str1 is a prefix of str2 in Go language?
I want a function similar to the Java startsWith ...
1
vote
1answer
200 views
jquery 1.8 contains case insesitive + starts with
I'm looking for a plugin/extension to jquerys :contains selector that is case insesitive and only matches up words that starts with the :contains text
In such a way that if you type 'count', you will ...
0
votes
2answers
121 views
replace.if startswith('CERTAIN STRING') and then returning a list, horrible a titles
example = ['1 Hey this is the first (1) level.\n', '2 This is what we call a second level.\n','','3 This is the third (3) level, deal with it.']
example = [i.rstrip() for i in example]
dictHeaders = ...
1
vote
2answers
442 views
Django startswith on fields
let's say that I have an Address model with a postcode field. I can lookup addresses with postcode starting with "123" with this line:
Address.objects.filter(postcode__startswith="123")
Now, I need ...
0
votes
1answer
174 views
jQuery select div with ID and class
I have the following:
<article id="post-43" class="like"></article>
<article id="post-56" class="like"></article>
<article id="post-78" class="dislike"></article>
...
-1
votes
1answer
136 views
Check for the first char in a text box
I'm trying to check if a textbox starts with a -.
I tried the following code, but it doesn't work:
if(textbox1->Text::StartWith("-"))
if(String(textbox1->Text).StartWith("-");
0
votes
2answers
172 views
How to keep string data for having best performance when selecting string list via LINQ by StartsWith and EndsWith queries
Now the question is pretty hard. I have a linq queries like the way below
var lstSimilars = from similarWords in lstAllWords
where similarWords.StartsWith(srWordLocal)
select similarWords;
foreach ...
0
votes
0answers
251 views
xpath function starts-with not returning all required information
When using xpath within the Scrapy Shell to select email addresses from a certain (p) tag on a webpage xpath returns all the links within that particular paragraph. As such I've attempted to use the ...
-2
votes
7answers
614 views
String java startsWith
public class Test {
public static void main(String[] args) throws Exception {
String s1 = "/program/rest/user/forgotPwd/";
String s2 = "/program/rest/user/forgetPwd/test";
...
3
votes
1answer
244 views
How to find if a document starts with a given term in solr?
I have a solr index with indexed text.
I'd like to query documents that start with a certain term.
I didn't find a way to do that with the lucene or dismax query parser.
Is there a way to do that?
A ...
0
votes
6answers
3k views
Determine if string starts with letters A through I
I've got a simple java assignment. I need to determine if a string starts with the letter A through I. I know i have to use string.startsWith(); but i don't want to write, if(string.startsWith("a")); ...
1
vote
3answers
5k views
Regex to check with starts with http://, https:// or ftp://
I am framing a regex to check if a word starts with http:// or https:// or ftp://, my code is as follows,
public static void main(String[] args) {
try{
String test = ...
0
votes
0answers
647 views
String.startsWith bug in Android Java? [closed]
Guys this is the most strangest thing and I am not sure if it's a bug or I am doing something wrong, but this is a line which is not working for me.
To simplify the scenario:
I have a form with ...
0
votes
2answers
268 views
Java - startsWith error
I am using method startsWith to find out, whether my string starts with desired string. Example:
for(int i=0;i<tokens.length;i++){
if(tokens[i].startsWith(ColumnName)){
...
0
votes
0answers
374 views
startsWith autocomplete jsf
Ill just why is it this error apperars when i add this code to my autosuggest
"CANT INSTANTIATE CORE.BEAN"
while(rs.next()) {
String s = rs.getString("name");
...
7
votes
3answers
2k views
Use Python to remove lines in a files that start with an octothorpe?
This seems like a straight-forward question but I can't seem to pinpoint my problem. I am trying to delete all lines in a file that start with an octothorpe (#) except the first line. Here is the loop ...
5
votes
4answers
1k views
Why is the T-SQL “LIKE” operator not evaluating this expression like I think it should?
I am attempting to error trap a T-SQL variable name by making sure that the value of the variable is prefixed with a bracket "[".
Here's an example of how I am trying to do this:
DECLARE @thing ...
0
votes
4answers
896 views
What is the easiest way to get all strings that do not start with a character?
I am trying to parse about 20 million lines from a text file and am looking for a way to do some further manipulations on lines that do not start with question marks. I would like a solution that does ...
1
vote
4answers
202 views
How do I select by a range of starting characters?
Here is my mySQL query:
SELECT *
FROM `eodList`
WHERE datechanged>='$curdate'
GROUP BY symbolName
ORDER BY dateChanged DESC
How do I get all rows (for example) where symbolName starts with ...
0
votes
2answers
232 views
Applescript wrap lines with HTML tags and MarsEdit.app script problem
Im currently using a script in MarsEdit.app which has a flaw. It checks the HTML document for cases where paragraphs are wrapped with <p> tags as follows:
-- If already starts with <p>, ...
0
votes
2answers
928 views
Applescript and “starts with” operator
Is there a way to check (in applescript) if a list (or block of html text) starts with any number of values.
Example (checking for a single value)
if {foobar starts with "<p>"} then
-- do ...
3
votes
1answer
761 views
Local sequence cannot be used in LINQ to SQL implementation
I'm getting an error, see below, when I try to generate a list of the class MappedItem. In short the code example below tries to find products by category, date range and SKU. The requirement I have ...
3
votes
2answers
6k views
LINQ to SQL query where a string StartsWith an element from a generic list
I'm looking to update one of my queries as the requirements for the search has changed. Originally, the user was to enter a single SKU and a mfg. date range to search the product catalog. So this is ...
3
votes
6answers
1k views
Something like `startsWith(str_a, str_b)` in C?
is there something like startsWith in a standard C library? It should take pointers to two strings that end with nullbytes and tell me whether the first one also appears completely at the beginning of ...
1
vote
3answers
1k views
Linq to SQL Join and Contains Operators
in the following query
var restrictions = from p in dcTrad.quop_restricted_items
where p.entry_status == 'P' && p.batch == "PRODUCTION" && p.problem != ...
15
votes
4answers
7k views
How do I find if a string starts with an other string in Ruby?
What the best way to find if a string starts with another in Ruby (without rails)?
0
votes
2answers
480 views
startswith on a constant in sqlalchemy
I'm trying to do something like this:
Session.query(some_table).filter("/some/path/to/element".startswith(some_table.path)).all()
That is, get all "parent" elements of a certain path. I tried doing ...
1
vote
1answer
184 views
startsWith() returning unexpected values
The class project has us reading in the title, artist and lyrics of 10,514 songs contained in a single text file. The current section of the project had us write an ordered unrolled linked list and ...
21
votes
8answers
2k views
Why do Strings start with a “” in Java? [duplicate]
Possible Duplicate:
Why does “abcd”.StartsWith(“”) return true?
Whilst debugging through some code I found a particular piece of my validation was using the ...
0
votes
3answers
839 views
Xquery node values where node starts with same text
How to create xquery to select node values where node name starts with some text. for example document
<doc>
<cpv1>Value1</cpv1>
<cpv2>Value2</cpv2>
...
3
votes
4answers
790 views
LINQ .Startswith or .Contains problems in VB.NET4
This may be a newbie question...
In my code I can easily use "where Obj.Feld = String", but using "where Obj.Feld.StartsWith("a")" doesn't work. See the following two functions:
Public Function ...
0
votes
0answers
712 views
Starts with doesn't work in Linq to NHibernate query
In my repository I have:
public IQueryable<ICustomer> GetByAddress(string address)
{
return from c in GetSession().Linq<ICustomer>()
where c.Address.StartsWith(address)
...

