Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Declined TPIPE /Simple=34 related

Apr
1,794
15
I have a text file of a conversation (most recent at the top) and I'd like to reverse the order. I have a "===" between each conversation so it would be nice if there was another /simple=nn,"string" where "string" would be the separator between each person speaking.
 
I don't understand what you're asking for. Can you give an example of what you want to accomplish?
 
I think Charles wants to reverse groups of lines rather just lines, so that, for example,
===
My dog has fleas.
And my cat has worms.
===
Gee! That's funny.
My dog has worms.
And my cat has fleas.

would become

===
Gee! That's funny.
My dog has worms.
And my cat has fleas.
===
My dog has fleas.
And my cat has worms.
 
Can you give an example of what you want to accomplish?
Here's how I interpreted it. He wants to turn something like this...
Code:
10
ten
===
9
nine
===
8
eight
===
7
seven
===
6
six
===
5
five
===
4
four
===
3
three
===
2
two
===
1
one
Into this...
Code:
1
one
===
2
two
===
3
three
===
4
four
===
5
five
===
6
six
===
7
seven
===
8
eight
===
9
nine
===
10
ten
 
Here's how I interpreted it. He wants to turn something like this...
Code:
10
ten
[omitted a lot of previous post]
10
ten

Just wanted to say I really like your "Whenever someone says "pls" because it's shorter than "please", I say "no" because it's shorter than "yes"." !
 
Back
Top