replacing

Replacing fields with jQuery

Why is line 10 returning null? http://pastie.org/720484 it works with line 40 ...

What is wrong with this c code?

Hello there, 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'}, {'a','a','a','a','a','a','a','a','a','\0'}, {'a','a','a','a','a','a','a','a','a','\0'}, {'a','a','a','a','a','...

TextCrawler, Windows Grep (mutiple file replacing text), cannot replace Chinese/Japanese words... or I don't know how to

Any ideas on how to do this? Or is there another software out there for this? When I copy some chinese characters, it displays as ????? Thank you, I'm trying to replace a bunch of html files. ...

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 replace the spaces with -? I am using PHP and the date is stored in $release_date ...

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 = file_get_contents('myPage.php?id='.$_GET['id']); $file = 'temp/form_'.$_GET['id'].'.html'; $change = file_get_contents('myPage.php?id='.$_GET['id']); $cha...