Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 07-23-2005, 11:55 AM   #1
Za Ha
Confirmed User
 
Join Date: Oct 2001
Location: Still lost
Posts: 5,112
Quick Question

If i have:

url@@description (where the @@ is a seperator)
can i change it to description@@url with some kind program or with excel or soemthing?

Thanx
Za Ha is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 12:27 PM   #2
woj
<&(©¿©)&>
 
woj's Avatar
 
Industry Role:
Join Date: Jul 2002
Location: Chicago
Posts: 47,882
search and replace in any text editor?
__________________
Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager
woj is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 12:29 PM   #3
Za Ha
Confirmed User
 
Join Date: Oct 2001
Location: Still lost
Posts: 5,112
Quote:
Originally Posted by woj
search and replace in any text editor?
I cant flip the order using search and replace.
Za Ha is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 12:39 PM   #4
FuqALot
Confirmed User
 
Join Date: Dec 2001
Location: Malibu
Posts: 3,817
email me the text file i do it for you for free, have programs for this, and email it. [email protected]
dont worry.. im not in adult so wont use your file.
FuqALot is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 12:40 PM   #5
High Plains Drifter
Confirmed User
 
High Plains Drifter's Avatar
 
Join Date: Jun 2005
Location: ♠ ♣ ♥
Posts: 2,341
Print it out and hold it up to a mirror.
__________________
High Plains Drifter is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 12:40 PM   #6
woj
<&(©¿©)&>
 
woj's Avatar
 
Industry Role:
Join Date: Jul 2002
Location: Chicago
Posts: 47,882
Quote:
Originally Posted by skinnywussy
Print it out and hold it up to a mirror.
__________________
Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager
woj is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 12:48 PM   #7
Doc911
Confirmed User
 
Join Date: Feb 2004
Location: If i was up your ass you'd know
Posts: 3,695
just write a php script to do it. If you don't know how I'll write it for 10 bucks
__________________


For PHP/MySQL scripts ICQ 161480555 or email [email protected]
Doc911 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 12:54 PM   #8
psili
Confirmed User
 
Join Date: Apr 2003
Location: Loveland, CO
Posts: 5,526
find a text editor with regular expressions, then do a search and replace to something like:

find: (.*);(.*)
-- where ";" is the separator
replace \2;\1

Excel, you could do something like:

paste everything in column "a".
hilight column a, then go to "data" -> text to columns -> delimited and then choose your delimeter
in like column g you could combine back the values:
in column g: =concatenate(c1 & ";" & b1)
then use the fill down function in the g column.

dream weaver, many html editors, have regex expression handling to do this for you.
__________________
Your post count means nothing.
psili is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 01:36 PM   #9
Za Ha
Confirmed User
 
Join Date: Oct 2001
Location: Still lost
Posts: 5,112
Quote:
Originally Posted by psili
find a text editor with regular expressions, then do a search and replace to something like:

find: (.*);(.*)
-- where ";" is the separator
replace \2;\1

Excel, you could do something like:

paste everything in column "a".
hilight column a, then go to "data" -> text to columns -> delimited and then choose your delimeter
in like column g you could combine back the values:
in column g: =concatenate(c1 & ";" & b1)
then use the fill down function in the g column.

dream weaver, many html editors, have regex expression handling to do this for you.
You are a fuckin genius

GFY is the best place to get advice on everything!!

This worked almost as well as the mirror trick
Za Ha is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 01:41 PM   #10
jwerd
Confirmed User
 
Industry Role:
Join Date: Jun 2003
Location: Costa Rica
Posts: 1,953
I may not understand this but off the top of my head this would work (incase you want to do it in php ever):

PHP Code:
// Assuming $buffer has the contents of your file...

$exp explode("@@"$buffer); // Pack this into an array...

// By default, $exp[0] would be the first part...

// So instead we just use $exp[1] first... :)

echo $exp[1].$exp[0]; 
Quicker than the mirror trick, too... and doesn't waste paper, LOL
__________________
Yii Framework Guru - Seasoned PHP vet - Partner @ XXXCoupon.com
jwerd is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 01:43 PM   #11
jwerd
Confirmed User
 
Industry Role:
Join Date: Jun 2003
Location: Costa Rica
Posts: 1,953
Sorry, GFy screwed it up a bit.

echo $exp [ 1 ] . $exp [ 0 ];

try that
__________________
Yii Framework Guru - Seasoned PHP vet - Partner @ XXXCoupon.com
jwerd is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-23-2005, 01:51 PM   #12
Za Ha
Confirmed User
 
Join Date: Oct 2001
Location: Still lost
Posts: 5,112
Thnx psili's method is very good atm.
Za Ha is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.