AuthorMessage
NeiSep
Ametuar
Posts: 93

I got a problem here i got this text from a hub:
$Key ƒ/%DCN005%/0À€U|TèåmFå®î S袵®î†ý|netfree.homeunix.net:9999|TèåmFå®î S袵®î†ý|0|0|
and what i want to do is to sort this out i want to make it look like this:
TèåmFå®î S袵®î†ý|netfree.homeunix.net:9999|TèåmFå®î S袵®î†ý|0|0|
But i cant get it all to work anyone got a solution?
or anything else ?
Mickey
Ametuar
Posts: 115

Quoted from NeiSep
I got a problem here i got this text from a hub:
$Key ƒ/%DCN005%/0À€U|TèåmFå®î S袵®î†ý|netfree.homeunix.net:9999|TèåmFå®î S袵®î†ý|0|0|
and what i want to do is to sort this out i want to make it look like this:
TèåmFå®î S袵®î†ý|netfree.homeunix.net:9999|TèåmFå®î S袵®î†ý|0|0|
But i cant get it all to work anyone got a solution?
or anything else ?

Your question is not clear. You want to cut out something let's say "SCut". But how do you define SCut? Is it a constant string? Or variable, always the same length??? If ame length just cut out first x chars from string using Delete procedure:
Delphi syntax:
procedure Delete(var S: string; Index, Count:Integer);
For example:
Delete(S, 1, 21);  // Deleting first 21 chars from S string
If you don't want to use help then give your program to somebody to make it for you. Serious. A good programmer learns from help a lot.
NeiSep
Ametuar
Posts: 93

Well yea thanks i gone read much much more and hell no i dont want anyone to programing for me lol.
You dont got any tips for me more then the help in delphi?
Mickey
Ametuar
Posts: 115

Quoted from NeiSep
Well yea thanks i gone read much much more and hell no i dont want anyone to programing for me lol.
You dont got any tips for me more then the help in delphi?

I learnt 70-80% from Help while I was a n00b. There is no better sample and explanation than Help. I recomended you the best way. Fall in love with it.
NeiSep
Ametuar
Posts: 93

Hi again well i have worked with the help files and now im not confused anymore so now i can get reall help from the help files i did get confused but now i see how its working thanks man.
See you around.
Mickey
Ametuar
Posts: 115

Quoted from NeiSep
Hi again well i have worked with the help files and now im not confused anymore so now i can get reall help from the help files i did get confused but now i see how its working thanks man.
See you around.

Okie cool  8)
Good work with them.