replace

replace all smileys by enumeration in php

Is there any fast (regex-based?) method to replace all smileys in a text, each by an unique corresponding identifier? For example, the first occurrence of :) should be replaced by smiley1, the :)) by smiley2 and another occurrence of :) by smiley1 again? Furthermore, the identifyier should be the same using different text for input Any ...

InstallShield 2009 Basic MSI: File Not Replaced After Upgrade with New Setups(1 file replaced)

InstallShield 2009 Premier, Basic MSI project I have installed the setup, its installed. I replaced a dll with a newer one and again prepared the setups(didn't change product code or any other code) Now running the new setups, it asks for upgrade I choose upgrade but after completing the setup I notice the dll is not replaced !!! wh...

How to replace new lines by regular expressions

Hello, can you help me with replacing in PHP. I dont know how to set any quantity of new lines with regex. $var = "<p>some text</p><p>another text</p><p>more text</p>"; $search = array("</p>\s<p>"); $replace = array("</p><p>"); $var = str_replace($search,$replace,$var); What i need, is to remove every new line (\n), not <br/>, beetwe...

Replace x, y and z to w, u, and i in one replace

I'm not so good at javascript and it's replace, so I'm wondering if you can optimize this line (etc one .replace instead of two): $itemClicked.replace(/ä|å/g, 'a').replace(/ö/g, 'o'); ...

Replace \r\n Newlines using XSLT and .NET C# VS 2008

I use VS 2008, .net 3.5 for generate page html using XSLT. I have Message, that contains \r\n (newlines) I use this in XSL file: <b>Message: </b><xsl:value-of select="Message"/><br/> I need replace \r\n by <br/> in xsl. I have seen several references but not get solution for my issue: I use this code C# before I call to transform X...

Javascript Regex problem

I have <li> elements in my document such as: <li id="123" onMouseOver="foo();">Lorem Ipsum ... I would like to remove the attributes and get the string <li>Lorem Ipsum .... In order to do that, I use the replace() method: foo = document.getElementById('bar'); alert(foo.innerHTML.replace('<li(.*)', '<li>')); But it won't match and r...

Best tool to remove dos line ends and join line back up again

I have a csv file into which has crept some ^M dos line ends, and I want to get rid of them, as well as 16 spaces and 3 tabs which follow. Like, I have to merge that line with the next one down. Heres an offending record and a good one as a sample of what I mean: "Mary had a ^M little lamb", "Nursery Rhyme", 1878 "Ma...

JavaScript: How to replace 0-9 with a-j

Using JavaScript's replace and regex, how do I replace numbers 0-9 with the letters a-j ? example mapping: 0 = a, 1 = b, 2 = c, 3 = d, 4 = e and so on. so, before: x = 3; after: x = 'd'; ...

PHP or Javascript: Simply Remove and Replace HTML Code

Hi, I have this code on my page, but the link has different names and ids: <div class="myclass"> <a href="http://www.example.com/?vstid=00575000&amp;amp;veranstaltung=http://www.example.com/page.html"&gt; Example Text</a> </div> how can I remove and Replace it to this: <div class="myclass">Sorry no link</div> With PHP or...

replace string in sql

i have 500 records in a table. one column holds all html data. so e.g - html> body> ... /body> /html>. What i want to do is a find and replace. i have this tag in every single record - <table id="something something" /> i want to replace that in all the rows with <table id="" /> now the difficult part is all the "something something" is...

Regular expression in Yahoo Pipes

Hi, I want to know what regular expression should be applied to replace 1 - 55 of 55 to only get 55 in Regex module of yahoo pipes. Thanks ...

Is there a way to 'search n replace fill' HTML with jQuery?

Dear fellow coders, Just a small question. Say I have the following HTML: <div class="foo"> {text} </div> Now we also have a JS array with 10 entries, all with a key 'text'. I want to use the snippet above as a template (snippet resides in jQuery-able webpage) for the array. Array entry goes in, HTML comes out. Here's the tricky ...

Detect and Manipulate Fonts Used in XPS Documents with C#

Hi, I am looking to develop/locate a find-replace tool for XPS documents. Does anyone know how to detect the the fonts used within XPS Documents within C#? And also how to produce an ODTTF Fils based on TypeFace Characters/Font? Kind regards, Matt ...

how to replace all using regexp (javascript)

var text = "&#39;Hello&#39;World&#39;&#39;&#39;"; how to replace all &#39; and Hello and World to ' result = "'''''''" ...

Objective-C String-Replace

Hello, I want to replace multiple elements in my string in Objective-C. In PHP you can do this: str_replace(array("itemtoreplace", "anotheritemtoreplace", "yetanotheritemtoreplace"), "replacedValue", $string); However in objective-c the only method I know is NSString replaceOccurancesOfString. Is there any efficient way to replace ...

How can I replace a regex substring match in Javascript?

var str = 'asd-0.testing'; var regex = /asd-(\d)\.\w+/; str.replace(regex, 1); That replaces the entire string str with 1. I want it to replace the matched substring instead of the whole string. Is this possible in Javascript? ...

Replace a substring with another substring

Hi, I want to replace the string "abc" to "def" each time it appears in my NSString object: "axcd abc amamam dff abc kdj abc" How do I do that?? Thanks, Sagiftw ...

jQuery: replace() or wrap() http://name.tld/request_url?parameter with <a href="this">...</a> ?

Ist there any better way to replace/wrap the h*tp://name.tld/request_url?parameter or h*tps://name.tld/request_url?parameter text in some certain html elements with an <a href> HTML <div id="posts"> <div class="post"> Tweet text 1 http://google.com and other text. </div> <div class="post"> Tweet text 2 https://www.google...

Javascript or regex solution to make markup XHTML compliant

I have an inline markup editor built into my website, which should produce XHTML compliant markup. But as you can see, it uses the deprecated font tag and size attribute. <font style="font-family: Courier New; color: rgb(0, 0, 153);" size="2"> asdfa <span style="color: rgb(0, 51, 0);"> a <font size="5">fds</font> </sp...

SQL Performance (Replace)

Hey, I have a table that has about 400,000+ rows. I am writing some pattern matching code but need to clean up a column before I do so. This boils down to doing a replace-like operation. I tried listing them all out one at a time... Update T_ADDRESS set ADDR_LINEONE = REPLACE(ADDR_LINEONE,' southeast ',' se ') Update T_ADDRESS set A...