Tagged Questions
The replacement tag has no wiki summary.
22
votes
5answers
5k views
How do I perform a Perl substitution on a string while keeping the original?
In Perl, what is a good way to perform a replacement on a string using a regular expression and store the value in a different variable, without changing the original?
I usually just copy the string ...
11
votes
4answers
18k views
Replace multiple characters in a string in Objective-C?
In PHP I can do this:
$new = str_replace(array('/', ':', '.'), '', $new);
...to replace all instances of the characters / : . with a blank string (to remove them)
Can I do this easily in ...
6
votes
6answers
2k views
BOOST_STATIC_ASSERT without boost
Since boost is forbidden in a company I work for I need to implement its functionality in pure C++. I've looked into boost sources but they seem to be too complex to understand, at least for me. I ...
6
votes
10answers
558 views
Any Substitute API for Win32API?
I need an API that can make menus like Win32API,
But something simpler and better than WinAPI.
That can make GUI, with text zones, buttons etc...like an average Windows program.(Windows GUI Style)
Can ...
5
votes
3answers
1k views
How can I replace a specific word in C#?
Consider the following example.
string s = "The man is old. Them is not bad.";
If I use
s = s.Replace("The", "@@");
Then it returns "@@ man is old. @@m is not bad."
But I want the output to be ...
5
votes
8answers
5k views
Removing nonnumeric and nonalpha characters from a string?
What is the best way to remove all the special characters from a string - like these:
!@#$%^&*(){}|:"?><,./;'[]\=-
The items having these characters removed would rather short, so would it ...
5
votes
5answers
790 views
Has anyone tried their software with ReactOS yet?
The Free MS Windows replacement operating system ReactOS has just released a new version. They have a large and active development team.
Have you tried your software with it yet?
if so what is your ...
4
votes
1answer
178 views
HTML5Boilerplate and the Image Replacement Class text-indent -999em
I have been using HTML5Boilerplate for most of my projects, as it is a great framework but me and the other developer have been going back and forth about the image replacement class and the use of ...
4
votes
2answers
219 views
How can I create a custom font service for Persian language
Hi
There are very limited Persian fonts for the websites, I need to know if there is a way to have custom fonts loaded in websites ?
There are some font replacement services but I dont know if they ...
4
votes
2answers
3k views
Disable home button in android toddler app?
I've developed and app that is a slide show of pictures which each play a sound when you tap them. It's like a picture book for ages 2-4.
The problem is, since android won't let you capture a home ...
4
votes
4answers
323 views
How can I do the multiple replace in python?
As asked and answered in HERE, I need to replace '[' with '[[]', and ']' with '[]]'.
I tried to use s.replace(), but as it's not in place change, I ran as follows to get a wrong anwser.
path1 = ...
4
votes
8answers
1k views
Java, replacement for infinite loops?
I am making a program that shows cellular growth through an array. I have gotten it so when I press the start button, the array updates every 10 seconds in a while(true){} loop. The problem with that ...
4
votes
1answer
199 views
Make one gsub call instead of five
How can I replace this:
lyrics = lyrics.gsub(/\n/,'').gsub(/^\{\"similar\": \[/, '').gsub(/\]\}$/, '').gsub(/^\{/, '').gsub(/\}$/, '')
to something shorter and one gsub call?
4
votes
5answers
331 views
Perform a lot of replacements in a text file using a huge list of replacement pairs
Given:
file a.txt containing many millions
of lines (say, one sentence per line) (2.6 gb!)
file b.txt containing 830k lines with pairs "[word1] [word2]"
Question:
how to perform the most ...
4
votes
6answers
3k views
Efficient Javascript String Replacement
Hey there, I've got a block of HTML that I'm going to be using repeatedly (at various times during a users visit, not at once). I think that the best way to accomplish this is to create an HTML div, ...
3
votes
4answers
104 views
Trying to use user-defined function to populate new column in dataframe. What is going wrong?
Super short version: I'm trying to use a user-defined function to populate a new column in a dataframe with the command:
TestDF$ELN<-EmployeeLocationNumber(TestDF$Location)
However, when I run ...
3
votes
1answer
128 views
Efficient Array replacement in Python
I'm wondering what is the most efficient way to replace elements in an array with other random elements in the array given some criteria. More specifically, I need to replace each element which ...
3
votes
2answers
279 views
Recursive C String replace
I'm quite new to C programming, used to only use C++ with the String class, but I'm wondering how I would go about doing a recursive replacement of a string with another string.
My code is like this, ...
3
votes
4answers
167 views
In general, does replacing AND with a pair of nested IFs speed things up?
I'm weighing the differences between
If[condition1 AND condition2, A, B]
and
If[condition1, If[condition2, A, B], B]
My thinking: the nested IFs will be faster.
My reasoning: By nesting the ...
3
votes
2answers
2k views
How to create an on-screen android keyboard that isnt a rectangle at the bottom portion of the screen?
I want to develop a replacement keyboard, but I am afraid that Android assumes the general keyboard 'area' will be a single rectangular shape that sits at the bottom of the screen.
What if I want ...
3
votes
2answers
520 views
Is Application.DoEvents() my only choice (in this case)?
I have some commercial equipment that I can connect to with a .Net library supplied by the equipment manufacturer - so I have no control over the library or the equipment, only my code.
The ...
3
votes
4answers
2k views
binary sed replacement
I was attempting to do a sed replacement in a binary file however I am beginning to believe that is not possible. Essentially what I wanted to do was similar to the following:
sed -bi ...
3
votes
3answers
3k views
Cufon font replacement: How can I eliminate the flash of unstyled text that occurs when the page loads?
I'm using Cufon to replace the font of selected heading elements on a site I'm working on, but whenever I load a page, there is a noticeable flash of unstyled text before Cufon replaces the text. I ...
3
votes
1answer
1k views
Image Replacement (gallery style) with Fade-In's / Fade-Out's
I'm sure you've all seen this demo of image replacement using this :
$("#largeImg").attr({ src: largePath, alt: largeAlt });
http://www.webdesignerwall.com/demo/jquery/img-replacement.html
So, ...
3
votes
3answers
259 views
Automatically replacing variables with #defines
I've got a tricky problem that I need some help with.
Currently, I have a file with about 100 #defines in it, from 1-100, and each with a unique string value.
Now I'm trying to print this value, but ...
3
votes
4answers
2k views
How can I replace all the HTML-encoded accents in Perl?
I have the following situation:
There is a tool that gets an XSLT from a web interface and embeds the XSLT in an XML file (Someone should have been fired). "Unfortunately" I work in a French speaking ...
3
votes
4answers
14k views
PowerShell - how do I do a string replacement in a function?
How do I convert function input parameters to the right type? I want to return a string that has part of the URL passed into it removed.
This works but uses a hard coded string:
function ...
2
votes
3answers
46 views
C++, std::transform replace items by indices
There are 2 unsorted vectors of int v1 and v2, where v1 contains a subset of v2
v1: 8 12 4 17
v2: 6 4 14 17 9 0 5 12 8
Is there any way, how to replace items of v1 by indices of its positions in ...
2
votes
3answers
68 views
Position-based replacement of block of text if string is matched in the same line
I have two sets of PDB files (this is a standard format which cannot be modified). First set is like:
ATOM 18 C33 Q58 d 91 -25.677 3.886 -30.044 1.00 0.00 C
ATOM 19 C34 ...
2
votes
2answers
68 views
“grep -R” replacement?
I have a machine with grep installed but option -R is not compiled-in and there is also no replacement switch.
How can I replace it in bash?
I tried:
for i in `find *`; do
grep 'pattern' $i;
...
2
votes
1answer
259 views
Replace sequence of dots with one underscore
I have a string holding any number of dots, sometimes also a sequence of dots.
I want to replace every . (dot) by _ (underscore) but when there is a sequence of dots, this should also result only in ...
2
votes
6answers
175 views
How to perform text substitution within all files in a folder?
I need to update a single parameter within a large set of .xml files. I read around and using a single line of perl at the windows command line I can get it to do substitutions a file at a time, but I ...
2
votes
2answers
31 views
Look Around does not deliver expected result with .net
I want to use a look-ahead regex for replacement with the System.Text.RegularExpression.Replace(...) method.
Now I am wondering what's wrong. Look at this example code:
string input = ...
2
votes
2answers
105 views
Serializing Object - Replacing Values
I've got a collection of around 20,000 objects that need to get persisted to my database. Now, instead of doing 20,000 insert statements, I want to pass all the records in using an XML parameter.
As ...
2
votes
1answer
509 views
Replacing backslashes in Python strings
I have some code to encrypt some strings in Python. Encrypted text is used as a parameter in some urls, but after encrypting, there comes backslashes in string and I cannot use single backslash in ...
2
votes
1answer
275 views
h3 tag text/image replacement, does this hurt seo?
I'm trying to "replace" text with an image in all of my h3 tags. I want the image to be in the html to avoid multiple h3 classes as this is being done for a portfolio and there will be about 10 h3 ...
2
votes
3answers
108 views
SQL Replacement via table
Mysql question:
I've got a table A with a column full of sentences.
I've got another table B with two columns: words and abbreviations.
I want to look through table A's column sentences and if a ...
2
votes
2answers
416 views
Replace characters in C#
I have a requirement.
I have a text which can contain any characters.
a) I have to retain only Alphanumeric characters
b) If the word "The" is found with a space prefixed or suffixed with the word, ...
2
votes
2answers
1k views
HTML input=“file” button to text
I want to replace input="file" button to only text like that http://valums.com/wp-content/uploads/ajax-upload/demo-jquery.htm but i don't want to use whole library. How can i do this ?
2
votes
6answers
1k views
Replace umlaute (äüö) for SEO link in rails - best way
I'm using the permalink_fu plugin to create permalinks from titles. My problem is: If the title contains german characters, they are just replaced with '_'.
What I need is something that replaces
รค ...
2
votes
1answer
1k views
Replacing a word with another word zero or more times in javascript using regular expressions
I have a word : [lesserthen] , that I need to replace with < zero or more times in a string. I'm using the String.replace method to do so. But the word is only replaced one time in the string, I ...
2
votes
2answers
594 views
Problem replacing words using [^a-zA-Z] regex
Just could not get this one and googling did not help much either..
First something that I know: Given a string and a regex, how to replace all the occurrences of strings that matches this regular ...
1
vote
1answer
8 views
What is replacement for Contacts.People.NOTES?
This is sort of out of curiosity question. Reading through Pro Android 3 book and I came upon Contacts.People.NOTES. Since People is inner class of Contacts class which been deprecated and replaced by ...
1
vote
1answer
123 views
How to replace all characters in a user input string except one
I'm currently in an introductory level Java class, and am working on the classic phrase guess assignment. The object is for one user to enter a secret phrase, and another to guess it one letter at a ...
1
vote
5answers
86 views
optimal way to escape character
I need to escape these characters: +-&|!(){}[]^"~*?:\ by preceding them with a \. What is the best way to do this. My first thought was using replace, but that would search the string for each ...
1
vote
3answers
69 views
PHP Dynamic Regexp replacement
I would like to know if there is a way to bind PHP function inside a regexp.
Example:
$path_str = '/basket.php?nocache={rand(0,10000)}';
$pattern = ? // something i have no idea
$replacement = ? // ...
1
vote
4answers
58 views
Buggy Text Replace code:
I cant seem to figure out why I keep getting this buggy output.
Input file:
ff1
ff2
ff3
ff10
ff11
ff20
ff21
ff23
gb20
gb10
gh23
Output File:
FF01
FF02
FF03
FF010
FF011
FF020
FF021
FF023
GB020
...
1
vote
2answers
164 views
Android - How to start creating a launcher app?
I am going to start my new app which is going to be a Home Replacement.
I have been through the example provided by google. but i am still little bit confused.
like
Where should i start?
Should i ...
1
vote
3answers
77 views
php null replacement function
there is this function called Nz() in visual basic for application. the function checks variable nullity and returns a provided value if it finds the variable is null.
i try to write the same ...
1
vote
1answer
58 views
sed - or another tool for regex text replacement
I need to replace all $arr[key] with $arr['key'] but not $arr[$key] or $arr[CONST] or already rewritten as $arr['key']
Eventually $arr[key] with {$arr['key']}
Thanks!