there is at bhw
name is like scrape... or loopline,.. some thing near to that tool
i wil search for u too
i hope u get that tool
EDIT:SCRAPEbox formatter![]()
http://www.scrapestuff.com/free-tools/scrape-formatter-tool
Made by loopline as the previous poster stated.
wc any time
Thanks alot for rep
Wow 5 rep+
i donot know y i m so happy LOL
never got such big yet
loved that
Gud luck
You can use UD or online tool http://www.texthat.com/
1. Install Notepad++ 2. Open keyword list file
3. Add a '{' as first character in the file before any other text, NOT on it's own line but just before next character.
4. Add a '}' as the last character after the last keyword (on same line).
3. Hit Ctrl+H (search & replace)
4. Enter the following to remove empty lines and normalize newlines to UNIX format - \n. Make sure not to enter any spaces by accident:
Find what: (\r\n|\r|\n)+
Replace with: \n
Option "search mode": regular expression
Click 'replace all' button.
5. Enter the following to create the spintax. Make sure not to enter any spaces by accident:
Find what: \n+
Replace with: |
Option "search mode": regular expression
Click 'replace all' button
6. Remove last '|' because you probably don't want it.
7. Save as 'keywords-spintax.txt'
Done!
Get out of here with your self-sufficiency!
TextPad version (if 1 keyword is on each line):
1. RegEx Find: \n (this indicates what starts a new line) and Replace with: |
2. RegEx Find: ^ and Replace with: {
3. RegEx Find: $ and Replace with: }
4. Nothing, you're done.
Textpad version (if keywords are comma separated)
1. RegEx Find : ", " (no quotes, but I want to emphasize the space after commas in many cases. You MUST include the space) and Replace with: |
2. RegEx Find: ^ and Replace with: {
3. RegEx Find: $ and Replace with: }
4. Nothing, you're done. (tho depending on how you enter the last line, there might be a final | you should get rid of or one of your spins will be just blank)
tl;dr : record this once, save as macro, done forever.