vote up 1 vote down star
1

I'm using startswith reg exp in javscript

if ((words).match("^" + string))

but if i enter the characters like , ] [ \ /

javascript throwing the exception. Any idea?

flag

34% accept rate
What exception? – Gumbo Sep 11 at 7:32

4 Answers

vote up 6 vote down check

If you're matching using a regular expression you must make sure you pass a valid Regular Expression to match(). Check the list of special characters to make sure you don't pass an invalid regular expression. The following characters should always be escaped (place a \ before it): [\^$.|?*+()

A better solution would be to use substr() like this:

if( str === words.substr( 0, str.length ) ) {
   // match
}

or a solution using indexOf is a (which looks a bit cleaner):

if( 0 === words.indexOf( str ) ) {
   // match
}

next you can add a startsWith() method to the string prototype that includes any of the above two solutions to make usage more readable:

String.prototype.startsWith = function(str) {
    return ( str === this.substr( 0, str.length ) );
}

When added to the prototype you can use it like this:

words.startsWith( "word" );
link|flag
2  
Don’t use indexOf. It searches the whole string and not just the start. – Gumbo Sep 11 at 8:06
@Gumbo: You're right, substr() seems like a better solution. – Huppie Sep 11 at 8:51
1  
@Huppie: indexOf(prefix) === 0 should work and doesn't require extracting a substring. – Grant Wagner Sep 11 at 16:21
@Grant: Well, I edited the post to use substr() instead of contains() because of the remark of Gumbo. If you're adding a method to the string prototype anyway, you might as well want the fastest solution. – Huppie Sep 14 at 6:01
vote up 0 vote down

If you want to check if a string starts with a fixed value, you could also use substr:

words.substr(0, string.length) === string
link|flag
vote up 2 vote down

One could also use indexOf to determine if the string begins with a fixed value:

str.indexOf(prefix) === 0
link|flag
1  
+1. indexOf() === 0 makes more sense to me than taking a substring. – Grant Wagner Sep 11 at 16:19
vote up 0 vote down

If you really want to use regex you have to escape special characters in your string. PHP has a function for it but I don't know any for JavaScript. Try using following function that I found from [Snipplr][1]

function escapeRegEx(str)
{
   var specials = new RegExp("[.*+?|()\\[\\]{}\\\\]", "g"); // .*+?|()[]{}\
   return str.replace(specials, "\\$&");
}

and use as

var mystring="Some text";
mystring=escapeRegEx(mystring);



If you only need to find strings starting with another string try following

String.prototype.startsWith=function(string) {
   return this.indexOf(string) === 0;
}

and use as

var mystring="Some text";
alert(mystring.startsWith("Some"));
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.