Hi
Is it possible to batch insert code/text into html files without replacing anything? Let's say i wanted to add a small code to line 26 on all files for example.
Thanks
Tiesto
batch insert text?
- DigitalVolcano
- Site Admin
- Posts: 1863
- Joined: Thu Jun 09, 2011 10:04 am
Re: batch insert text?
You can use line mode on TextCrawler pro
For instance:
Using mode "Limit to Lines"
From: 26
To: 26
RegEx:
$
Replace
\r\nTHE NEW LINE
This will insert a new line after line 26. The $ symbol matches the line end, and the \r\n inserts a new one.
For instance:
Using mode "Limit to Lines"
From: 26
To: 26
RegEx:
$
Replace
\r\nTHE NEW LINE
This will insert a new line after line 26. The $ symbol matches the line end, and the \r\n inserts a new one.
Re: batch insert text?
Awesome, works a treat. Thanks!