Tagged Questions
The replacing tag has no wiki summary.
2
votes
1answer
299 views
Replacing strings in stream, using Swizzle Stream
I've tried the Swizzle Stream library to replace tokens in an input stream.
String RESOURCE_PATH = "FakePom.xml";
InputStream pomIS = JarFinderServlet.class.getClassLoader().getResourceAsStream( ...
1
vote
2answers
90 views
finding consecutive 0's in a vector and replacing it by 1's in matlab
I have a 1x1000 vector, consisting of 1's and 0's.
I would like to find four consecutive 0's in the vector and replace it by combination of 0's and 1's (for eg, 1101,1111,1010 any combination of the ...
1
vote
2answers
89 views
Quickest way to replace associative array keys with numerical keys
I have an array:
array('something' => 'like this', 'something' => 'like this', 'something' => 'like this');
I would like to replace it (quickly as possible, using a simple inline function) ...
1
vote
4answers
364 views
C++ | Replace space with an underscore
I am trying to write something that will replace all the spaces in a string with an underscore.
What I have so far.
string space2underscore(string text)
{
for(int i = 0; i < text.length(); ...
1
vote
6answers
103 views
Replacing fields with jQuery
Why is line 10 returning null?
http://pastie.org/720484
it works with line 40
0
votes
4answers
29 views
Replace Certain Strings With PHP Variables
Hello again Stackoverflow!
In my website I have certain preset variables such as the page title, year/time, and etc.
For example in my title I would use
<title> <?php echo $TITLE; ?> ...
0
votes
1answer
38 views
Notepad++ text string replace/remove
I need to replace a text string but I have no idea how should I do this.
Here is the text:
"abaci - plural of "abacus",a calculating device; a crown of a column
abaco - one of the islands of the ...
0
votes
1answer
33 views
Drawables not changing after being replaced with others in the folders
I've created a new theme set for an app of mine, and decided I didn't need the old one anymore.
So, I copied my new image files over the old ones, replacing all of them. I did this for all of my ...
0
votes
1answer
43 views
Replacing characters within a user generated string
I have an assignment that entails making a program that has the user input a word, and spits back out a modified version of the word. Specifically, it has the user enter a word with a suffix (either ...
0
votes
1answer
19 views
Making a changing text ex. Making an every day video clip about weather
This is my first question here:
Im new in AE, i've been using AE for 6 mnths and I love it, i work at a large format advertising company in central america, recently we bought a led screen(About 8x3 ...
0
votes
5answers
108 views
faster replacing in list with a lot of matches
just a small problem with list and replacing some list entries.
Maybe some informations around my problem. My idea is really simple and easy. I use the module mmap to read out bigger files. It's ...
0
votes
3answers
203 views
Toggle between Divs containing classes
How would I simply replace <div class="one"> with the following <div class="two"> when I hover over it and vice versa? (<div class="two"> will be replaced with <div ...
0
votes
1answer
233 views
Using javascript to overwrite an image and replace with a new one on the same page
I have a image scroller displaying thumbnails and another area where an enlarged picture of the thumb nail is displayed. I'm trying to use javascript to overwrite the large image when a different ...
0
votes
1answer
55 views
php creating editing and writing files
Im trying to use file_get_contents to get contents of a file and delete a certain part of a line in that file.
Is the following anywhere near what I want to achieve?
$page = ...
0
votes
3answers
42 views
Need to insert - into a variable holding a date?
I have a date variable with the format
2008 12 29
to have it correctly display from within my database app I need the format to be
2008-12-29
Is there a way to simply add the - into the string or ...
0
votes
8answers
178 views
What is wrong with this c code?
I'm trying to replace the first line with spaces, what is it that is wrong here?
#include <stdio.h>
int main(void){
char text[5][10]={
{'a','a','a','a','a','a','a','a','a','\0'},
...
-1
votes
1answer
42 views
To replace the first character of the last line of a unix file with the file name
We need a shell script that retrieves all txt files in the current directory and for each file checks if it is an empty file or contains any data in it (which I believe can be done with wc command).
...