replace

changing and hiding parts of a table

I've got a html table with td class-formlabel and text (HP)Hello Why doesn't this replace the text? $(this).text().replace('(HP)',''); Why does this remove formating if this is $("td.ms-formlabel").each(function(){ $(this).text("hello"); How can hide the TR rows for a match given the rendered html above and the below code? (Note I ...

Unix Find Replace Special Characters in Multiple Files

I've got a set of files in a web root that all contain special characters that I'd like to remove (Â,€,â,etc). My command find . -type f -name '*.*' -exec grep -il "Â" {} \; finds & lists out the files just fine, but my command find . -type f -name '*.*' -exec tr -d 'Â' '' \; doesn't produce the results I'm looking for. Any thou...

how to replace special characters with the ones they're based on in PHP?

How do I replace: "ã" with "a" "é" with "e" in PHP? Is this possible? I've read somewhere I could do some math with the ascii value of the base character and the ascii value of the accent, but I can't find any references now. thanks ...

Javascript replace doesn't work

function areaMe(area){ var barea = $('#barea').val(); if(barea.indexOf(area)!=-1){ alert ("..." + barea + "..." + area + "..."); barea.replace(area, "cu"); // remove alert ("..." + barea + "..." + area + "..."); }else{ barea+=area+' '; // inlcui } $('#barea').val(barea); } ...

Help with JYTHON 2.0 CODE -STRING MANIPULATION and replace

As i have already asked this question and i have later realized that tool for which iam writing JYTHON CODES supports presently on till 2.1 version as the intepreter is of 2.1 so some of the advanced technique is not working. Now being a new and excited to learn more in jython so that ican write more better and sma...

string.replace var output

Hi could some one show me how to do the following: var regep = /margin-bottom:([^;]+); margin-left:0px; margin-right:0px; margin-top:([^;]+);/; elementCSS = elementCSS.replace( regep , "margin-bottom:\\1; margin-left:auto; margin-right:auto; margin-top:\\2;"); \1 to = ([^;]+) (margin-bottom) and \2 to = ([^;]+) (margin-top) ?? Cant s...

What's the most efficient algorithm for string replacing?

KMP is for searching,what's the one for replacing? ...

regular expression replace

why this regex not work? i want to replace my string by all not default charaacters legal are = a-Za-z0-9- rest should be replaced and return without the forbidden chars protected string FormatToInvalidChars(string InputString) { string RegexPattern = @"(^[A-Za-z0-9]*)$"; string s = Regex.Replace(InputString....

Replace a string with a user control

How can I replace a string with UserControl? if string = [$control1$] replace with control1.ascx ...

Java : replacing text URL with clickable HTML link

Hello, I am trying to do some stuff with replacing String containing some URL to a browser compatible linked URL. My initial String looks like this : "hello, i'm some text with an url like http://www.the-url.com/ and I need to have an hypertext link !" What I want to get is a String looking like : "hello, i'm some text with an url ...

Read word document in ASP.NET and replace text (Office 2003/2007)

Hi, I'm using VS 2005, asp.net 2.0. I need to read a word document (.doc) in asp.net, make some replaces and then generate another word document. So far OK. I've done it in a machine that have the Office 2003 installed, so in VS 2005 I've added a reference to the "Microsoft Word 11.0 Object Library". Everything worked perfectly. Code...

Replace text (change case) in a textbox using Javascript

I am trying to build a sort of intelli-sense text input box, where as the user types, the 'and' is replaced by 'AND \n' (i.e. on each 'and', the 'and' is capitalized and user goes to new line). The Javascript I used for this is: function Validate() { document.getElementById("search").value = document.getElementById("search").value.r...

How to replace text in string in C#?

I have this particular piece of code, but its not working. text = text.Replace("\xEF\xBF\xBD", "?"); Does any one knows how to replace the text "\xEF\xBF\xBD" to "?" in C# String. ...

Mass string replace in python?

Say I have a string that looks like this: str = "The &yquick &cbrown &bfox &Yjumps over the &ulazy dog" You'll notice a lot of locations in the string where there is an ampersand, followed by a character (such as "&y" and "&c"). I need to replace these characters with an appropriate value that I have in a dictionary, like so: dict =...

Is this possible with regular expressions?

Something like this: /[abcd]/[efgh]/ The idea is that a will get replaced with e, b with f, c with g and so on. Ideally, this should be language independent. If that isn't possible, I have an alternate solution (because this regex is generated by some code, I can make one for each of the possible replacements). ...

search and replace inside files usind Delphi language

Hello, I want to make a small app with Delphi to search inside files for a specific word and change it then save the file It should support ansi and utf-8, how I should do that ? thanks ...

replace a whole page useing GreaseMonkey

is there a way to replace a whole web page using GreaseMonkey? basically a redirection but the address bar still shows the original address. i want the original address to show, but i want to load a modified web page from my hard drive without anyone knowing. thanks ...

make python replace un-encodable chars with a string by default

I want to make python ignore chars it can't encode, by simply replacing them with the string "<could not encode>". E.g, assuming the default encoding is ascii, the command '%s is the word'%'ébác' would yield '<could not encode>b<could not encode>c is the word' Is there any way to make this the default behavior, across all my proje...

Regular Expression to split on specific character ONLY if that character is not in a pair

After finding the fastest string replace algorithm in this thread, I've been trying to modify one of them to suit my needs, particularly this one by gnibbler. I will explain the problem again here, and what issue I am having. Say I have a string that looks like this: str = "The &yquick &cbrown &bfox &Yjumps over the &ulazy dog" You'...

Using Javascript RegExp to replace each match with an iterating number

I want to replace empty lines in my string with an iterating number e.g. replace String: "My first line My second line My third line" with " 1 My first line 2 My second line 3 My third line" I can match and replace these lines using var newstring = TestVar.replace (/(^|\n\n)/g, "\nhello\n"); However I'm struggling to ad...