Link to home
Start Free TrialLog in
Avatar of mvidas
mvidasFlag for United States of America

asked on

Another encoded question

I will assign this more points if it proves to be more difficult than I imagined.
Matt
-----
Argt  mwiigfrm ost eiwsmtigIv endigteps e as Ihdafwmntsti onn ocm pwt  tigjmlr n eei s Cnrt o iuigi u,tog thpflyws' htdfiut
Iwn ob bet eieacerwne o hs otefrtpro ops h ubro xetpit  aefrti oi rawl e h rz.
lo o oesui u,cekotht:/w.itasalrcm Iral nytrwta nteet osbycu o no h a h tigi ube. ti aeta o ol e  oo n  owr ls ett ahohrwtotbigtgte,adsen nte tteedo h tigmyjs etetpofnee ocakti,tog h iei msn naslywylih,Ia atn o ybs orve oehn 'ebe on h atfwdy.  a  e iue hsmrigt oeu ihasrn-ube,adhr ti. ogasfrfgrn tot huhi oeul antta ifcl.
 att eal odfn  la inrfrti,s h is esnt ottenme fepr onsIhv o hstpcae ilgttepie
As,frsm tpdfn hc u tp/wwvrultpe.o.  elyol he hti hr opsil leyui ntewytesrn sjmld I srr htyuwudseaclnadafradsahnx oec te ihu en oehr n eigaohra h n ftesrn a utb h i-f eddt rc hs huhtest sauigi  il a.
Avatar of makc_the_great
makc_the_great

54 68 65 73 65 20 22 64 65 63 6F 64 65 20 6D 65 22 20 71 75 65 73 74 69 6F 6E 73 20 61 72 65 20 61 6E 6E 6F 79 69 6E 67 2E
Avatar of mvidas

ASKER

I'm just bored and had little else to do :P I promise this one has an algorithm, and will probably be my last one for a long time
mine has one, too. it is called ASCII :)
Ta da!!  Here is a piece of it, too much to decode the lot.

Also, for some stupid fun checkout http://virtualstapler.com. I really only threw that in that in there to possibly clue you in on the way the string is jumbled.

Xx :o)
Ah **** GfW had not logged off!!!!!
 
Part of the answer is:-

Also, for some stupid fun checkout http://virtualstapler.com. I really only threw that in that in there to possibly clue you in on the way the string is jumbled.

The letters have been separated alternatingly out into separate paragraphs.
SOLUTION
Avatar of GwynforWeb
GwynforWeb
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
YOU should not be using company machines for f*rting about on EE!! (I can :)
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mvidas

ASKER

Re: http:Q_21420586.html#13983507 - I can agree with that logic

Thanks guys
Avatar of mvidas

ASKER

Also, not that it is necessary, but here are the encoding/decoding vb functions I made for this

Public Function MixUpString(ByVal vString As String) As String
 Dim i As Long, vTempStr As String
 vTempStr = ""
 For i = 1 To Len(vString) Step 2
  vTempStr = vTempStr & Mid$(vString, i, 1)
 Next i
 For i = 2 To Len(vString) Step 2
  vTempStr = vTempStr & Mid$(vString, i, 1)
 Next i
 MixUpString = vTempStr
End Function

Public Function FixMixedString(ByVal vString As String) As String
 Dim i As Long, vTempStr As String, vLen As Long
 vLen = Len(vString)
 vLen = Int(vLen / 2) + IIf(vLen / 2 = Int(vLen / 2), 0, 1)
 vTempStr = ""
 For i = 1 To vLen
  vTempStr = vTempStr & Mid$(vString, i, 1) & Mid$(vString, i + vLen, 1)
 Next i
 FixMixedString = vTempStr
End Function
thx :)
mvidas,
Ta o.
hnkyu

GfW, You are a common thief. :)