Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
419 views

string IndexOf and Replace

I have just faced this problem today and wonder if someone has any idea about why does this test may fail (depending on culture). The aim is to check if the test text contain two spaces next to each ...
9
votes
1answer
153 views

Objective C - Replacing portion of string in NSString?

I am using the following code to replace a portion of the string, this works for normal characters (alphabetical characters) but when it comes to symbols like "•" it can't replace the character. Any ...
8
votes
2answers
1k views

Is there a Boyer-Moore string search and fast search and replace function and fast string count for Delphi 2010 String (UnicodeString) out there?

I need three fast-on-large-strings functions: fast search, fast search and replace, and fast count of substrings in a string. I have run into Boyer-Moore string searches in C++ and Python, but the ...
7
votes
6answers
413 views

String.Replace() vs. StringBuilder.Replace()

I have a string in which I need to replace markers with values from a dictionary. It has to be as efficient as possible. Doing a loop with a string.replace is just going to consume memory (strings are ...
7
votes
2answers
463 views

Can you ignore HTML in a string while doing a Replace with jQuery? [closed]

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, ...
5
votes
4answers
80 views

Ruby string sub without regex back references

I'm trying to do a simple string sub in Ruby. The second argument to sub() is a long piece of minified JavaScript which has regular expressions contained in it. Back references in the regex in this ...
4
votes
2answers
97 views

Passing a function to Powershell's (replace) function

I want to pass a function call(which returns a string) as a replacement string to Powershell's replace function such that each match found is replaced with a different string. Something like - ...
3
votes
3answers
229 views

c# Replace string with does contains unknown parts

I have a File, which contains text. Now, I have to replace some string with another. For Example I have to replace "[ContactLetterSalutation]" with "Dear Thomas Kehl". Now, it is possible, ...
3
votes
2answers
680 views

Best way for substring replace in haskell

The problem is quite simple: I have to replace all occurences of "fooo" and all its substrings with "xyz". In Java, for example, I will do it like this: someString.replaceAll( "fooo|foo|fo", "xyz" ) ...
3
votes
2answers
93 views

Replacing an array in vim

I had an array in my code that's andI I used an index c[i]. I wanted to change c[i] and write g[i][j] in that place. I tried to use the command %s/c[i]/g[i][j]/g but did something unusual. How can I ...
3
votes
3answers
142 views

Javascript String Replace

I have a string of tags delimited by semicolons: "red; yellow; blue; green; purple" I would like to strip out all the tags that do not match a substring (case-insensitive.) For example, if I ...
2
votes
4answers
81 views

Replace the string between opening and closing anchor tags with some other string

I need to replace the string between a pair of anchor tags with some other string. To be more clear: <a blah blah>Click Here</a> I want to replace 'Click Here' with an <img src=... ...
2
votes
2answers
47 views

Replacing list of strings in a string (Objective-c 2.0)

For example I'd like to replace all occurrences of @"a" and @"b" in @"abcdabcd" with @"z". I'm currently doing this with repeated called to stringByReplacingOccurencesOfString:withString:: NSString ...
2
votes
5answers
214 views

Recursive string replacement in C#

Senario I have an object Keyword -> It has a name and a Value (string) A keyword cannot contain itsSelf... but can contain other keywords example K1 = "%K2% %K3% %K4%" where K2,K3,K4 are ...
2
votes
2answers
87 views

Can I do a number of string replace in one statement in python

I am trying to few junk characters in my string using the following statement: desc = string.replace(desc,'&ldquo;','"') desc = string.replace(desc,'&rdquo;','"') desc = ...
2
votes
4answers
104 views

Optimizing scanning large text and matching against list of words or phrases

I'm working on an app that takes an article (simple HTML page), and a list of vocabulary terms (each may be a word, a phrase, or even a sentence), and creates a link for each term it finds. The ...
2
votes
4answers
152 views

How replace variable values in many text based files

I need a script/program/whatever to replace specific variable values in many text based files. I was thinking that regular expression was the keyword, but not so much in to that... More precise ...
2
votes
4answers
229 views

PHP - Changing Phone Number Format with Regex

I'm trying to figure out how to convert a phone number in the format +18761234567 into 876-123-4567 using a replace Regex.
2
votes
5answers
194 views

Referencing nested groups in JavaScript using string replace using regex

Because of the way that jQuery deals with script tags, I've found it necessary to do some HTML manipulation using regular expressions (yes, I know... not the ideal tool for the job). Unfortunately, ...
2
votes
2answers
298 views

Javascript regular expression string-replacement of multi-line strings

With JavaScript regular expression replace, trying to replace anything between <head> and </head> tags so that: <head> Multiline foo </head> <body> Multi line bar ...
2
votes
4answers
67 views

Which class should I use for making many replacements in a string?

I have to make a lot of text-replacements. Which class is best used to make this in a performant manner? Is it StringBuilder? StringBuilder stringBuilder=new StringBuilder(startString); ...
2
votes
1answer
98 views

replace awkward characters in string php

Is there a string functions which replaces all the awkward characters, like Hellö becomes Hello, Or do i need the following strtr function, and put all the awkward characters in the...? $addr = ...
2
votes
3answers
367 views

How to replace common words in sql column

I have a table of common words that are used in sentences (i.e. A, the, and, where, etc...) What I want to do is loop through all those words and strip them out of the descriptions that people have ...
2
votes
3answers
354 views

Binary version of StringReplace

I'm trying to run AnsiStrings.StringReplace on a RawByteString holding a blob of data, some of which needs to be replaced. It would work, except that inside StringReplace it converts my string to a ...
2
votes
3answers
246 views

How to replace a String twice with oldValues having same text within?

I am trying to take a block of text and scan it for specific text (name) and turn it into a URL, specifically: Block of text: Chairman Joe Smith has announced a new plan to decrease expenditures by ...
2
votes
1answer
237 views

Token replacement

I currently implement a replace function in the page render method which replaces commonly used strings - such as replace [cfe] with the root to the customer front end. This is because the value may ...
2
votes
7answers
1k views

Real examples of SQL injection issues for SQL Server using only a Replace as prevention?

I know that dynamic SQL queries are bad due to the SQL Injection issues (as well as performance and other issues). I also know that parameterized queries are prefered to avoid injection issues, we all ...
2
votes
3answers
795 views

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 ...
2
votes
3answers
468 views

XML field replacement in C#

ok, so, i have an xml file that looks like this: <?xml version="1.0"?> <Users> <User ID="1"> <nickname>Tom</nickname> <password>a ...
1
vote
1answer
29 views

Highlighting Keyword in search results

How do I highlight keywords in search result? Here's an example of my code: <?php $mysql = new mysqli($host,$username,$password,$database); $keyword = 'racing'; $query = $mysql->query("SELECT ...
1
vote
3answers
64 views

unix find and replace text in dir and subdirs

I'm trying to change the name of "my-silly-home-page-name.html" to "index.html" in all documents within a given master directory and subdirs. I saw this: Shell script - search and replace text in ...
1
vote
2answers
75 views

how to change xml tag format like <xml></xml> to <xml/>

I have a xml file. As per my requirement I need to update empty tag such as I need to change <xml></xml> to <xml/>. Is it possible to change the tags like that.. Thank you...
1
vote
0answers
57 views

PHP - Performing a string replace, but only on occurences which are not inside nested <form> tags

I'm trying to make a string replace on text in order to highlight substrings. Those paragraphs however may include nested inline forms which also potentially contain the text string to replace. ...
1
vote
2answers
52 views

Make programming langugage for your web app in JS that compiles to JS w/ PHP to ensure thorough filtering of user-uploaded html5 canvas animations?

A persistent follow-up of an admittedly similar question I had asked: What security restrictions should be implemented in allowing a user to upload a Javascript file that directs canvas animation? I ...
1
vote
1answer
89 views

Replace string does not work in python 3.2

I have a template file: 'template.txt' like below: class Core_Model_DbTable_{table_name} extends YouNet_Db_Table { const TYPE_PRINTED = 1; const TYPE_DIGITAL = 2; ...
1
vote
5answers
134 views

string.replace is not working

I have function which accepts string (which is basically a XML doc). I am making this change: if (filterXml.Contains("&")) { filterXml.Replace("&", "&amp;"); } It is ...
1
vote
2answers
102 views

VB.NET match whole word and replace

I'm trying to replace a string with another but the problem is that the string is matching some other string partially. For e.g. - Dim x as String = "I am Soham" x = x.Replace("am","xx") After ...
1
vote
1answer
78 views

javascript insert method arguments into string template

I'm not sure exactly how the final implementation will be, but the basics are to insert method arguments into a string "template". The first instance, I could just do a regex replace but that has ...
1
vote
3answers
53 views

Javascript string replace weirdness — $$$$ gets collapsed to $$ — what's the reason behind this result?

At work, I was encountering a problem where users of our application were receiving messages featuring an invalid unicode character (0xffff), which according to the standard, should never be mapped to ...
1
vote
2answers
58 views

JavaScript Replace all odd behavior

I want this code: function renderTemplate(temp,content){ for (var i in temp){ replace = new RegExp("["+i+"]",'g'); content = content.replace(i,temp[i]); } return content; ...
1
vote
1answer
51 views

Best way to replace strings

I have an array where I'm storing the bad and good string pairs. Ex.: array( "Man. United"=>"Manchester United", "Bay. Munchen"=>"Bayern Munchen", "Bay. Munich"=>"Bayern Munchen", ... ) ...
1
vote
2answers
50 views

grep is not finding a patter of \n and hyphens together (but can find them separately)

I have some apt files that have code in them like this: --- some code --- Sometimes there's a blank line following the opening ---, or before the closing ---. I want to compress these (get rid of ...
1
vote
3answers
214 views

Remove a backslash character from a string in C#

I want to remove a backslash character from this string: String result = "[{\"venues\":{\"venueId\":1,\"name\":\"First Venue\"," + "\"telephone\":\"jkljl\",\"description\":\"Edited ...
1
vote
6answers
124 views

javascript: if first 2 chars are //, replace it with /

I think I may need a regex for this, but since I suck at regexs was hoping someone here could spare a minute to help me. Basically I have a variable (lets name it: zippy) and if zippy's value is ...
1
vote
5answers
137 views

String.Replace char to string

I would like to replace the french letter Æ with the asci corresponding AE, but the method does not accept this. Is there another way?
1
vote
4answers
128 views

PHP: Problem with str_replace

I have noticed a strange behaviour of a str_replace function. Can you tell me why instead of number 3 in no_2 i get no_4 ? Here is the case: $pattern = array(1,2,3); $change = array(1,3,4); $sql = ...
1
vote
3answers
518 views

Python string replace in a file without touching the file if no substitution was made

What does Python's string.replace return if no string substitution was made? Does Python's file.open(f, 'w') always touch the file even if no changes were made? Using Python, I'm trying to replace ...
1
vote
6answers
843 views

javascript string replace array

Hey all, is there an easy equivalent to this in JavaScript? $find = array("<", ">", "\n"); $replace = array("&lt;", "&gt;", "<br/>"); $textarea = str_replace($find, ...
1
vote
3answers
364 views

Replace content of each HTML controls javascript jquery

I'm trying again to replace each text content of each control in a page using javascript and jquery. I need to search in each text content (WITHOUT MODIFING TAGS, ONLY THE TEXT) any word and replace ...
1
vote
2answers
30 views

Edit files with template

I have a lot of files which consist of some string. I have to remove it from all of files. How can I do this faster? Any ideas, prefer python-script, for example. Thanks.

1 2