Search found 16 matches

by f000ker
Fri Feb 04, 2005 5:44 am
Forum: General
Topic: doubling text
Replies: 2
Views: 187

doubling text

say i got
word
word1
word2
word3

how make it output
wordword
word1word1
word2word2
word3word3

?
by f000ker
Fri Feb 04, 2005 5:41 am
Forum: General
Topic: remove lines without :
Replies: 6
Views: 799

nice 2 good responces thanks guys

ben_josephs wrote:Since it's a single character (":") that you're looking for the absence of, you can search for the regular expression that matches lines containing only characters that aren't ":"
^[^:]*\n
and replace them with nothing.
by f000ker
Thu Feb 03, 2005 6:28 pm
Forum: General
Topic: remove lines without :
Replies: 6
Views: 799

s_reynisson wrote:Do a find on the ":" with mark all. Invert all bookmarks, delete bookmarked lines. HTH
ah smart thanks :)
by f000ker
Thu Feb 03, 2005 6:22 pm
Forum: General
Topic: remove lines without :
Replies: 6
Views: 799

remove lines without :

is there away to remove lines that dont contain domthing for example
dsfsdfdfsdf:dsffdsd
dsfssfssdffsfsfs
gdhgfhhgshgf:fdgdgfdfdg
gdgfgfdgdfgdfgdgfdgfdg:343434
344334443:454545




it would remove dsfssfssdffsfsfs because it doesnt have :

Anyone?
by f000ker
Thu Jan 27, 2005 10:43 pm
Forum: General
Topic: How to split up text
Replies: 6
Views: 577

thanks that worked :)
by f000ker
Thu Jan 27, 2005 10:42 pm
Forum: General
Topic: ripping part of text
Replies: 1
Views: 163

ripping part of text

if I put a list of ips like
85.86.12.187:18844
85.86.13.242:1733
85.86.21.174:2989
85.86.71.229:36146
85.86.73.196:1815

how would i rip it all after the : example end up with
1844
1733
2989
36146
1815
thanks guys yall been alot of help so far.
by f000ker
Mon Jan 24, 2005 3:38 am
Forum: General
Topic: How to split up text
Replies: 6
Views: 577

i hit f8 and top box pasted (([^ ]* ){5})

bottom box pasted \1\n

it tells me cant find expression i have it checked under the prefencres editor posix expression checked ?

what i doing wrong
by f000ker
Mon Jan 24, 2005 1:57 am
Forum: General
Topic: How to split up text
Replies: 6
Views: 577

that works good is there away to do it like every 5th space?
Bob Hansen wrote:Search for space

Replace with \n
by f000ker
Sat Jan 22, 2005 4:58 pm
Forum: General
Topic: How to split up text
Replies: 6
Views: 577

How to split up text

for example i load in a ebook and it takes it and looks for a " " or space
and then sends the word to the next line for example

This is just a example of the next.
this
is
just
a
example
of
the
next.

and so on. :(
by f000ker
Tue Jan 11, 2005 1:38 am
Forum: General
Topic: how to replace certian steps
Replies: 11
Views: 918

what is regex?
Sorry but i am brand new to this trying to see what it does before buyingit.
s_reynisson wrote:Hmm, looks like a macro job to me, are you sure about using regex for this?
by f000ker
Tue Jan 11, 2005 1:26 am
Forum: General
Topic: how to replace certian steps
Replies: 11
Views: 918

another thing will this thing dedupe?
by f000ker
Tue Jan 11, 2005 12:55 am
Forum: General
Topic: how to replace certian steps
Replies: 11
Views: 918

ok last step is kicking me now I might not of been clear up top with the bluh example lets use same example up top i did the first step and ended up with this 12.221. 130.13. 130.13. now how do i make it do this 12.221.0.0 12.221.0.1 12.221.0.2 and so on until it hits 12.221.255.255 and then do the ...
by f000ker
Tue Jan 11, 2005 12:50 am
Forum: General
Topic: how to replace certian steps
Replies: 11
Views: 918

yeap that did the removal part quick thanks man
s_reynisson wrote:Pls check "POSIX" under Configure->Preferences->Editor.
I have used POSIX regular expression syntax, which can be selected from the Editor page of the Preferences dialog box.
by f000ker
Tue Jan 11, 2005 12:25 am
Forum: General
Topic: how to replace certian steps
Replies: 11
Views: 918

Yes i tried it with and with out that checked. i hightlight text pad hit f8 then paste ^([0-9]*\.[0-9]*\.).*$ into the top box then \1 in the bottom and hit replace all and it says cant find reg expression I tried this with it checked and unchecked right now i have it checked and also text and match ...
by f000ker
Tue Jan 11, 2005 12:19 am
Forum: General
Topic: how to replace certian steps
Replies: 11
Views: 918

Hey thanks for the fast responce i went to replace and pasted in ^([0-9]*\.[0-9]*\.).*$ and it says cant find reg expression find ^([0-9]*\.[0-9]*\.).*$ replace \1 find (bluh) replace \1.\i I have used POSIX regular expression syntax, which can be selected from the Editor page of the Preferences ...