Search found 9 matches

by rodp
Thu May 22, 2014 9:28 am
Forum: Releases & Update News
Topic: TextCrawler 2.5 Released
Replies: 2
Views: 25555

Re: TextCrawler 2.5 Released

Hello,

I was just wondering if version 3 has made any progress? The feature to double click on a .txc or run from a command line is still something I'd be grateful for.

Many thanks in advance

Rodp
by rodp
Sun Nov 24, 2013 11:37 pm
Forum: TextCrawler - General
Topic: Execute a .txc file from dos prompt
Replies: 1
Views: 9465

Execute a .txc file from dos prompt

Hi All,

I'm a regular user of Textcrawler. I'd now like to try and automate my batch regex scripts via a command line / dos prompt. Is this possible or might this be possible in a future release?

Many thanks in advance

RodP
by rodp
Sat Dec 29, 2012 3:49 pm
Forum: Regular Expressions Help
Topic: match tabs on 2nd line only
Replies: 0
Views: 11468

match tabs on 2nd line only

Hi All, I have a number of simple text files with a number of lines. On each line there are a number of phrases separated by tabs. I'd like to find how many tabs are on the second line (specifically). I got as far as this for using in textcrawler but it doesn't seem to work in notepad++ and I'm want...
by rodp
Fri Dec 28, 2012 3:24 pm
Forum: TextCrawler - General
Topic: TextCrawler VERY slow in batch (binary mode) vs manual
Replies: 1
Views: 8786

TextCrawler VERY slow in batch (binary mode) vs manual

Hi All, Please could someone help. I have 50 files or so I need to run through textcrawler batch process. It's a complex 8 step process and has to cater for various scenarios. When I process it manually, using the 'regular expression' tab within textcrawler, each of the 8 steps are done pretty quick...
by rodp
Tue Feb 07, 2012 12:59 pm
Forum: Regular Expressions Help
Topic: Add a tab to the beginning of a specific line
Replies: 4
Views: 18852

Re: Add a tab to the beginning of a specific line

Hi Fool4UAnyway, Thanks for replying. I think you're right in that I should stick with what I've got and split the process in two. Add a tag to the lines (that I don't want to change) firstly and then use reg ex again to swap it around. I was trying to be clever and just do it in one expression but ...
by rodp
Fri Feb 03, 2012 2:55 pm
Forum: Regular Expressions Help
Topic: Adding same value
Replies: 2
Views: 11531

Re: Adding same value

Put it in excel? Hope someone else can prove it can be done in regex. Sorry I can't help further.

Rodp
by rodp
Fri Feb 03, 2012 2:45 pm
Forum: Regular Expressions Help
Topic: Add a tab to the beginning of a specific line
Replies: 4
Views: 18852

Re: Add a tab to the beginning of a specific line

hi all (again), progress has been made but in the opposite direction(!). I've tried selecting the lines I don't want to edit thinking that if I can get that to work then it might be easy enough to inverse it. Well here's my regex: Search: ^.*?(\d{1,}.*( END| And))|^([\s\w\W])$|^(\s[\w\W])$ Replace: ...
by rodp
Fri Feb 03, 2012 9:11 am
Forum: Regular Expressions Help
Topic: Add a tab to the beginning of a specific line
Replies: 4
Views: 18852

Re: Add a tab to the beginning of a specific line

Hi All, Got a little further on this problem but left with one final issue. I used: search: ^(?!\d.*( END| And).*$).* replace: \t\t\t$& Multi line anchor tick box ticked This left the lines with numbers at the beginning alone 2 Total Sweet CONSSEC Childrens Biscuits END and tabbed / indented the...
by rodp
Thu Feb 02, 2012 5:29 pm
Forum: Regular Expressions Help
Topic: Add a tab to the beginning of a specific line
Replies: 4
Views: 18852

Add a tab to the beginning of a specific line

Hi All, First post here so please go easy(!). I have some text (see below) which I've nearly got to where I want using TextCrawler regex but I'm struggling with this little bit. I'd like to add a tab to the line that is non blank and does not start with a number. Numbers range from 1 to 100. Below I...