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,'<');
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,'<$1>$2</$1>');
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.
<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
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:
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.
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>' ); }
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');
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?
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 =
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.
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]
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.
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.
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.
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
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);
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? .
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!
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("