String.replace(/</g,'&lt;');

Jul 20, 2005

Three questions

1)

I have a string function that works perfectly but according to W3C.org
web site is syntactically flawed because it contains the characters </
in sequence. So how am I supposed to write this function?

String.replace(/</g,'&lt;');

2)

While I'm on the subject, anyone know why they implemented replace using
a slash delimiter instead of quotes? I know it's how it's done in Perl
but why is it done that way?

3)

One last regexp question:
is it possible to do something like this:
String.replace(/<(.*?)>(.*?)</$1>/ig,'&lt;$1&gt;$2&lt;/$1&gt;');
This is just an example where a sub-match used in a regular expression
must sub-match again exactly as it did the first time later in the same
string. But I don't know how to do that in a regexp although it seems
like it should be possible.

View 4 Replies


ADVERTISEMENT

Use String.replace That Is Not Case Sensitive And Replace Every String Found?

Jul 27, 2010

Here is my code:

<script type="text/javascript">
var str="Welcome to Microsoft! Microsoft Microsoft";
var stringToBeFound = 'Microsoft'
var ReplaceString = 'site'
document.write(str.replace(stringToBeFound , ReplaceString ));
</script>

My problem is im trying to use string.replace that is not case sensitive and replace every string found. I could use regular expression with it but my stringToBeFound is a dynamic variable im getting it from my database

View 9 Replies View Related

Replace A String With Another String, The Replace Lines Look Like This?

Aug 19, 2010

I ran into a problem that I could not fix myself, I am trying to replace a string with another string, the replace lines look like this:

Code:
var word = document.getElementById("word").innerHTML; document.getElementById("word").innerHTML = wordd.replace(/B/g, '<span class="style106">B</span><span class="style107"> </span>'); It works just perfectly if left alone, but I need to replace every letter inside this string, adding those style and span tags around each and every letter. So if I add another line to this code, like this:

[Code]...

View 5 Replies View Related

Replace Characters / Inner String From A String

Aug 13, 2011

How I would remove characters from a string if they are present?

For example lets say I wanted to remove c:/fakepath/ from the string c:/fakepath/DSF102.jpg and just leave the DSF102.jpg how would I got about this?

View 2 Replies View Related

String.replace(/.../,str) Won't Replace?

Dec 20, 2009

i am trying to make an online graphing calculator with javascript. dont ask how because i dont know. but there is an annoying error in a do...while loop. although it should break out of the loop when the |'s (absolute value signs) are replaced with Math.abs( and ). here is the code.

var initec = function(){
var rg = {
}

[code]....

View 9 Replies View Related

String.replace

Apr 4, 2007

I was tring to write a function to make that took the letters that a
user is searching for and making the first occurrence of it bold in
the results (ignoring the case).

>From reading javascript books and looking at posts in this group, I

thought this would work. Perhaps I misunderstood what $1 is. But in
the results, I am getting a bold $1 with IE6.

How can I determine what the occurrence of the phrase is in the
correct case?

I realize I can write this parsing the string without regular
expressions but I thought this would be cleaner.

var match = new RegExp( escapeCharsForRegExp(typedLetters), "i");
if (match.test(text))
{
text = text.replace(match, '<b>' + '$1' + '</b>' );
}

View 2 Replies View Related

Replace With A String That Has � ?

Aug 21, 2010

I have this string:

I want to make it:

so I tried

The problem is with identifying the � as opposed to '.

View 8 Replies View Related

String Replace Alternative

Jul 23, 2005

Is there a possibility to do a string replace in javascript without regular experessions. It feels like using a hammer to crash an egg.

View 24 Replies View Related

String().replace() Usage...

Jul 23, 2005

Can someone help my syntax?

var z=myForm.myInputTag.value.string().replace(" ","-");

I would expect the above to allow z to take the value of an input tag
(called myInputTag) and replace spaces with dashes...

It doesn't change the string - nor do I get errors in the Mozilla
javascript console...

View 4 Replies View Related

Replace String Literal

Jun 6, 2006

How would one make the ECMA-262 String.replace method work with a
string literal?

For example, if my string was "HELLO[WORLD]" how would I make it work
in this instance.

Please note my square brackets are not regular expression syntax.

View 21 Replies View Related

JQuery :: Get Td String And Replace?

Apr 28, 2009

I would like to select the text of this td and replace with another string. How can that be accomplished?

<td jscontent="address" style="vertical-align: middle; width: 100%;"
jstcache="9">8050 Drexel Ct, Lemon Grove, CA 91945</td>
I tried with this without any success:
var vtd = $(".googledir tr td:contains('8050 Drexel Ct, Lemon Grove,
CA 91945')").html('8050 Blossom Lane, Lemon Grove, CA 91945');

View 1 Replies View Related

Replace String With Asterisk?

Jul 27, 2011

I would like to replace all the characters within a string with asterisk using javascript.

Could you please let me know how i can implement this using Regex within javascript.

View 5 Replies View Related

String Replace And Reg Exp In Javascript

Mar 31, 2006

I've a function like this: Code:

function submit_msg() {
if (egsd.value == 'yes') {
write_msg("<b>" + chatkeo.value + " : " + chatmsg.value + "</b><br />");
} else {
write_msg(chatkeo.value + " : " + chatmsg.value + "<br />");
}
chatmsg.value="";
}

Now I need to do some string replace in chatmsg.value, ie, I need to look for some piece of text in chatmsg.value, and in case they are present (there may be multiple occurences of the same), to replace them with something else. This is what I got by doing a google search: Code:

function replaceAll( str, from, to ) {
var idx = str.indexOf( from );

while ( idx > -1 ) {
str = str.replace( from, to );
idx = str.indexOf( from );
}
return str;}

chatmsg.value = replaceAll( chatmsg.value, "string to replace", "new string" );
And I place this second function just above the previous one. But it's not working. Any help friends?

View 1 Replies View Related

HTML In A String While Doing A Replace?

Feb 11, 2010

Possible Duplicate: Replace words in a string, but ignore HTML Is it possible to ignore the HTML elements when calling Replace?

Sample code:

$myText.replace(new RegExp( $searchString, 'gi' ),
'<span class="highlight">'+ $searchString + '</span>');
$myText is a large string of HTML e.g.:
var $myText =

[Code]...

View 6 Replies View Related

Replace Whitespace Characters In String

Oct 12, 2005

I have a JavaScript string. I want to replace all consecutive
occurrences of whitespace characters like spaces, tabs, newlines, and
form feeds with another string.

For example, say I have a string consisting of:

-- 3 spaces
-- The characters "hello"
-- 2 newline (
) characters
-- The characters "goodbye"
-- 5 spaces

After applying some sort of regular expression to replace consecutive
occurrences of whitespace chars with the string "X", the string should
consist of the following:

-- The character "X"
-- The characters "hello"
-- The character "X"
-- The characters "goodbye"
-- The character "X"

How could I do this using regular expressions? I'm quite familiar with
JavaScript but don't know anything about regular expressions or using
them in JavaScript, so please show me step-by-step how it's done.

View 3 Replies View Related

JQuery :: Change Tag And Replace String.

Oct 26, 2011

I have the following plugin to "deobfuscate" an email:[code] At the moment I have two problems:

1.I want to being able to use other values than AT and DOT. So instead of having:email = email.replace(/ at /gi, "@").replace(/ dot /gi, ".");I would like to have something like:email = email.replace(/ options.At /gi, "@").replace(/ options.Dot /gi, ".");But this is not working. How can I make it work?

2.What the plugin does is replace:<span class="Email">name at domain dot com</a>[code]

View 6 Replies View Related

JQuery :: Replace All Instances Of The String?

Jul 27, 2010

i have phone number on the page. Let's say 0208 123 45678 and i want to replace it with 0207 123 9999. Thing is, phone number is not in one type of tag, id or class.All i can tell you, it is somewhere throughout the body tag.

View 1 Replies View Related

JQuery :: Possible To Replace String Characters?

Aug 4, 2009

I am running a search on my web site which uses jQuery to take the search terms and build up a URL based on them. For example, if someone searches for "chair" my URL will be appended with /chair/. However, if someone searches for something which is two words, for example "chair covers" I need the space in between to be replaced by a "+" sign so the URL will now be appended with /chair+covers/ I'm not sure if it is possible to string replace in jQuery?

Here is my current code:
function sendSearchInput(whichelement,hiddeninput,formid) {
hval = $("#"+hiddeninput).val();
$("#"+formid).submit(function() {
if ($("input:#"+whichelement).val() != hval) {
var searchval = $("#"+whichelement).val().toLowerCase();
$("#"+formid).attr("action","retail/search/"+searchval+"/");
return true;
}
$("input:#"+whichelement).focus();
return false;
});}

This will basically check that the form is not the default value (specified in the hidden field "hval") and then change the search term to lowercase and append the URK using "attr". I have tried a couple of methods including
var test = searchval.text().replace(' ','+');
And then trying to alert "test" to check it but the function just simply doesn't work.

View 2 Replies View Related

JQuery :: Replace Letters In String?

Sep 4, 2010

I'm new to Jquery, and i was wondering how i could rename a string like "hat" to "het" by replacing "a" with "e"in my labels..

View 1 Replies View Related

JQuery :: Replace String With Two Arrays?

Jul 25, 2009

I have two arrays and text variable.I need find all substrings from first array and replace them with corresponding substrings from second array in this variable.In php it would be$text = str_replace ($array1, $array2, $text);I know it is more complicated in javascript, and i have little experience in it.

View 2 Replies View Related

Search And Replace In Large String?

Jun 1, 2009

I have a large string, but need to search for a specific character and replace it only if it is between two other items. Examplemystring would be something like this<parent><child1>1 & 2</child1><child2>1 & 2</child2><child3>1 & 2</child3></parent>I need to replace the & symbol in child2, but not 1 or 3. I am trying to figure out how to replace just any & signs in child2, but I need to leave them alone in child 1 and 3.I know I can do a replace(), but just not sure how to limit it to only the one I need

View 8 Replies View Related

Replace Markup Pattern Within A String?

Feb 22, 2010

Im trying to find if a particular html markup pattern (<ROD> ... </ROD>) within a string and if its found then replace it with another string.eg."This is my string and it might <ROD>PartNumber123</ROD> contain HTML markup"So in this case I want to replace "<ROD>PartNumber123</ROD>" with {0}. If there is no <ROD>...</ROD> then dont do anything.Im sure im doing this the wrong way, maybe a regular expression would be best.Although this works its not very clean and I just cant find the correct solution.

function parseData(data){
var r1 = data.indexOf("<ROD>",0);
var r2 = data.indexOf("</ROD>",0);

[code]....

View 2 Replies View Related

Adding Tags Using String.replace()

Oct 9, 2003

When trying to emulate php's nl2br() function in javascript, I ran into something quite disturbing.

Code:
cms.t.value = cms.t.value.replace(/
/gi, '<br />
');
Using this piece of code, I was really surprised that the newlines weren't preceded by <br />, but by <br>. I really don't understand why that would happen. Why can't I decide my own replacement string? .

View 12 Replies View Related

Find And Replace String In An Array

Dec 3, 2004

I used arrays in javascript.. The array contains duplicate entries... I need a new array with only unique entries...

View 9 Replies View Related

Replace Last Occurrence Of A Substring From A String

Feb 9, 2011

I am looking for a function that will replace last occurence of a substring from a string: tmpStr: xxx, yyy, zzz, sss, The desired outcome: xxx, yyy, zzz and sss (ie: remove last letter and then replace last occurrence of ",") The string can differ,

* xxx,
* xxx, yyy,
* xxx, yyy, zzz,

Do anyone of you have a neat fuction for that? I will be so happy for all input!

View 6 Replies View Related

Replace Line Break In String?

Sep 16, 2010

Using ruby on rails I'm creating a string on the fly, which I would like to output using JavaScript.Unfortunately the string contains line breaks and I am getting the error message:"unterminated string literal"Is there any way to do something like this in JavaScript:

Code JavaScript:
var myString = 'A string with
line breaks'.sub("

[code].....

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved