473,416 Members | 1,542 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

Javascript Regular Expression with Replace

I want to use the .replace() method with the regular expression /^ %VAR
% =,($|&)/. The following DOESN'T replace the "^default.aspx=,($|&)"
regular expression with "":
---------------------------------
myStringVar = myStringVar.replace("^" + iName + "=,($|&)", "");
---------------------------------

The following DOES replace it though:
---------------------------------
var match = myStringVar.match("^" + iName + "=,($|&)");
if(match != null && match.length 0) myStringVar =
myStringVar.replace(match[0], "");
---------------------------------

Am I using the replace method wrong? The following DOES work when
using the replace method for me:
---------------------------------
myStringVar = myStringVar.replace(/^default.aspx=,($|&)/, "");
---------------------------------

But I need to use the "iName" variable instead of "default.aspx".
Does replace not let me use strings as regular expressions
like .match() and .search()? Anyone know how I would get .replace()
to work the way I want it to? Reasion I'm curious is because the 2nd
method above takes about 2 seconds to complete on my machine when I
have a feeling the single ".replace()" would probably take 1/2 the
time.

Thanks

NB
Dec 14 '07 #1
1 3365
NvrBst wrote:
I want to use the .replace() method with the regular expression /^ %VAR
% =,($|&)/. The following DOESN'T replace the "^default.aspx=,($|&)"
regular expression with "":
---------------------------------
myStringVar = myStringVar.replace("^" + iName + "=,($|&)", "");
---------------------------------

The following DOES replace it though:
---------------------------------
var match = myStringVar.match("^" + iName + "=,($|&)");
if(match != null && match.length 0) myStringVar =
myStringVar.replace(match[0], "");
---------------------------------

Am I using the replace method wrong?
Yes, you do.
The following DOES work when using the replace method for me:
---------------------------------
myStringVar = myStringVar.replace(/^default.aspx=,($|&)/, "");
---------------------------------
The reason for that is that String.prototype.replace() takes both a RegExp
object reference and a string value as first argument. However, when passed
a string value, it works differently. While String.prototype.match() always
expects a RegExp object reference and converts the argument into one if it
is not one already.

From the ECMAScript Specification, Edition 3 Final:

| 15.5.4.10 String.prototype.match (regexp)
|
| If `regexp' is not an object whose [[Class]] property is "RegExp",
| it is replaced with the result of the expression `new RegExp(regexp)'.
| [...]
|
| 15.5.4.11 String.prototype.replace (searchValue, replaceValue)
|
| [...]
| If `searchValue' is a regular expression (an object whose [[Class]]
| property is "RegExp"), do the following: If searchValue.global is
| false, then search `string' for the first match of the regular
| expression `searchValue'. If `searchValue.global' is true, then
| search string for all matches of the regular expression
| `searchValue'. [...]
|
| If searchValue is not a regular expression, let `searchString' be
| `ToString(searchValue)' and search `string' for the first
| occurrence of `searchString'. [...]

So the string argument in your String.prototype.replace() call denotes a
*literal* string, including the literal `($|&)', which does not match.
But I need to use the "iName" variable instead of "default.aspx".
Does replace not let me use strings as regular expressions
like .match() and .search()?
A string value is not a RegExp object reference, so you can not use it as
one. However, if the implementation does not already do it for you (as in
this case), you can convert it into a Regular Expression manually, provided
you escape potential special characters if they are meant to be literally in
the match.
Anyone know how I would get .replace() to work the way I want it to?
myStringVar = myStringVar.replace(
new RegExp("^" + iName + "=,($|&)"),
"");

I don't know what you actually want to match, but you should consider
escaping the `$' with `\\$' if it is not meant as end-of-input.
Reasion I'm curious is because the 2nd method above takes about 2 seconds
to complete on my machine when I have a feeling the single ".replace()"
would probably take 1/2 the time.
ISTM you should consider other factors as reasons for this.
PointedEars
--
realism: HTML 4.01 Strict
evangelism: XHTML 1.0 Strict
madness: XHTML 1.1 as application/xhtml+xml
-- Bjoern Hoehrmann
Dec 14 '07 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Kenneth McDonald | last post by:
I'm working on the 0.8 release of my 'rex' module, and would appreciate feedback, suggestions, and criticism as I work towards finalizing the API and feature sets. rex is a module intended to make...
5
by: Sue | last post by:
After finishing up my first quarter JavaScript on 12/12/03, I decided to improve character checking on my project. In my project I only had to do very basic validation. Therefore, I only had one...
9
by: Lyners | last post by:
Quick question. I have some java script that looks like this; ...
7
by: Billa | last post by:
Hi, I am replaceing a big string using different regular expressions (see some example at the end of the message). The problem is whenever I apply a "replace" it makes a new copy of string and I...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.