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?
|
1
|
I'm using
but if i enter the characters like javascript throwing the exception. Any idea?
|
|||
|
|
|
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:
or a solution using indexOf is a (which looks a bit cleaner):
next you can add a startsWith() method to the string prototype that includes any of the above two solutions to make usage more readable:
When added to the prototype you can use it like this:
|
||||||||||||
|
|
|
If you want to check if a string starts with a fixed value, you could also use
|
||
|
|
|
|
One could also use indexOf to determine if the string begins with a fixed value:
|
||||
|
|
|
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]
and use as
and use as
|
||
|
|