Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

129
votes
8answers
66k views

Javascript StartsWith

How would I write the equivalent of C#'s String.StartsWith in Javascript? var data = 'hello world'; var input = 'he'; //data.startsWith(input) == true
46
votes
12answers
6k views

Why does “abcd”.StartsWith(“”) return true?

Title is the entire question. Can someone give me a reason why this happens?
20
votes
8answers
1k views

Why do Strings start with a “” in Java? [closed]

Possible Duplicate: Why does “abcd”.StartsWith(“”) return true? Whilst debugging through some code I found a particular piece of my validation was using the ...
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.) ...
6
votes
3answers
338 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 ...
4
votes
4answers
199 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 ...
3
votes
1answer
309 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
1k 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
4answers
437 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 ...
3
votes
6answers
2k views

Python: startswith any alpha character

How can I use the startswith function to match any alpha character [a-zA-Z]. For example I would like to do this: if line.startswith(ALPHA): Do Something
3
votes
3answers
1k views

Why is function isprefix faster than Startswith in C#?

Does anyone know why C# (.NET)'s StartsWith function is considerably slower than IsPrefix?
2
votes
1answer
63 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 ...
2
votes
6answers
187 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 ...
2
votes
3answers
567 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)?
2
votes
2answers
2k views

Why is this Lucene query a “contains” instead of a “startsWith”?

string q = "m"; Query query = new QueryParser("company", new StandardAnalyzer()).Parse(q+"*"); will result in query being a prefixQuery :company:a* Still I will get results like "Fleet Africa" ...
1
vote
3answers
91 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 = ...
1
vote
4answers
46 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 ...
1
vote
3answers
356 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 != ...
1
vote
1answer
92 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 ...
1
vote
2answers
87 views

Prototype startsWith OR

I am trying to use Prototype and startsWith but I want to check a number of values and little confused how to do this. Basically have this code: if(Category.startsWith("[Test1] " || "Test " || ...
1
vote
2answers
771 views

Linq To NHibernate: .StartsWith on multiple properties

I'm trying to accomplish the following query (notice .StartsWith): return (from p in _session.Linq<Profile>() where (p.Firstname + " " + p.Lastname).StartsWith(wildcard) select ...
0
votes
0answers
27 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 ...
0
votes
6answers
103 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")); ...
0
votes
0answers
104 views

String.startsWith bug in Android Java?

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
74 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
1answer
81 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"); ...
0
votes
4answers
82 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 ...
0
votes
2answers
120 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
163 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 ...
0
votes
2answers
169 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 ...
0
votes
3answers
204 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> ...
0
votes
0answers
421 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) ...
0
votes
7answers
381 views

Java Number comparisons

Is there something I can use to see if a number starts with the same digit as another? Ex. 5643 and 5377 both start with five. Is there a way to do this with numbers or do they have to be strings? ...
-1
votes
7answers
54 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"; ...