Forum: C
Jun 22nd, 2008, 2:05 AM
|
|
Replies: 1
Views: 329
Linked List
Hi,
I have to make a linked list library. I am very new to data structures in C and would very much appreciate if someone could help me out and tell me if I am in the right direction. I am not...
|
Forum: Perl
Jun 11th, 2008, 5:55 PM
|
|
Replies: 2
Views: 404
Re: html tags replace
I am just supposed to use regular expressions.
But I got it working now. Thanks anyways!
|
Forum: Perl
Jun 11th, 2008, 5:54 PM
|
|
Replies: 7
Views: 441
|
Forum: Perl
Jun 11th, 2008, 5:53 PM
|
|
Replies: 1
Views: 264
|
Forum: Perl
Jun 11th, 2008, 5:53 PM
|
|
Replies: 1
Views: 256
|
Forum: Perl
Jun 11th, 2008, 3:58 AM
|
|
Replies: 1
Views: 256
comptatible attributes
If I have want to combine tags with compatible attributes like...
<font color="blue" font="Times"><font size="14"abcdegh</font></font>
to
<font color="blue" font="Times"...
|
Forum: Perl
Jun 11th, 2008, 3:56 AM
|
|
Replies: 1
Views: 264
whitespace remove
If I have a multiline text like..
abcd ef ghi
xyz d e f
d
sjskf s fdf
then how would I be able to remove the spaces (/s+) inside the strings (in middle of the strings).
I thought using doing...
|
Forum: Perl
Jun 10th, 2008, 9:41 PM
|
|
Replies: 7
Views: 441
|
Forum: Perl
Jun 10th, 2008, 9:26 PM
|
|
Replies: 7
Views: 441
Re: string search
thanks for yr quick reply.
sorry about the mistake on the first post and for the lack of clariffication.
You are right....i need to get rid of the tags that 'close and open' needlessly
please...
|
Forum: Perl
Jun 10th, 2008, 8:43 PM
|
|
Replies: 7
Views: 441
Re: string search
Hi,
so far i have am able to remove the bold tags as.....
<b>abcd</b>efgh<b>ijkl</b>
to
<b>abcdefghijkl</b>
|
Forum: Perl
Jun 10th, 2008, 6:34 PM
|
|
Replies: 7
Views: 441
string search
I am writing a perl program which should do the following...
for ex. if I have a html file like..
<b>this is bold.</b>This is
bold too</b>
I have to write the program (without using any html...
|
Forum: Perl
Jun 9th, 2008, 7:30 PM
|
|
Replies: 2
Views: 404
html tags replace
Hi,
I am writing a program in perl which opens and reads a html file and removes unnecessary tags.
For example if an html file has...
<html>
<title>this is the title</title>
<body>
<b>this is a...
|