Search found 4 matches

by Steve_L
Sat Jun 01, 2013 10:33 pm
Forum: Regular Expressions Help
Topic: First attempt doesn't seem to work
Replies: 3
Views: 14338

Re: First attempt doesn't seem to work

Hi SafeTex...I a new to regular expressions and TextCrawler too......but did you try this?

\D+\d+\D+\d+

\D matches a character that is not a digit
\D+ matches more than one character that is not a digit

\d matches any single digit
\d+ matches one or more digits
by Steve_L
Tue May 28, 2013 6:41 pm
Forum: TextCrawler - General
Topic: Placing Text Elsewhere in html document
Replies: 1
Views: 10308

Placing Text Elsewhere in html document

Ok...I am really having some trouble trying to figure this one out....hopefully someone will have an answer for me as I am still learning this. I have some text between tags that I need to copy and place between another set of tags on another line. Example: I have text between an H1 tag on line 30 t...
by Steve_L
Sun May 26, 2013 2:51 pm
Forum: TextCrawler - General
Topic: Replace Lines of Code
Replies: 1
Views: 7850

Re: Replace Lines of Code

Ok...I think I have found a way to do this....if anyone has a better way feel free to share. I searched for a long time about regular expressions and was able to come up with this. ********************************* To remove everything above a certain line, including spaces and the line you specify....
by Steve_L
Sat May 25, 2013 1:06 am
Forum: TextCrawler - General
Topic: Replace Lines of Code
Replies: 1
Views: 7850

Replace Lines of Code

I am looking to replace a lot of code in a bunch of pages. What I am trying to do is replace everything above and including this line <!--**************BEGIN CONTENT*************--> And I would like to replace it with another block of html code. Having trouble trying to figure out how to remove the ...