Replace Pioneer Home
All Examples
Free Download
all
Advanced search and replace
Replace text in multiple files
Regular expression replace
Batch file rename
Batch download
Text file parser
Text file splitter
Html text generator
Search replace binary
Random word generator
Character count
Character encoding
Bin Hex Oct Dec converter
Text generator
RSS: Replace Pioneer Examples
311.Advanced search and replace -- How to change all hyperlink text font into bold inside a html file?
User:
editor -- 2009-01-04
Hits:
188
Type:
Advanced search and replace
Search all
Advanced search and replace
examples
Description:
How to change all hyperlink text font into bold inside a html file?
Input Sample:
<html>
...
<a href=xxx>abc</a>
...
</html>
Output Sample:
<html>
...
<a href=xxx><b>abc</b></a>
...
</html>
Answer:
Hint: You need to
Download and install "Replace Pioneer"
to finish following steps.
1. ctrl-o open source html file
2. ctrl-h open replace window
* Enter following under "search for pattern":
(
)(.*?)(
)@
* Enter following under "replace with pattern":
$1
$2
$3
3. click "Replace", done!
Download Script:
scripts/311.rst.zip
Similar Examples:
How to change all the webpage address into links inside a html file?
(72%)
How to change all the letters in a text file to upper cases?
(56%)
How to extract all image links from a html file?
(53%)
How to change all numbers which have format of (number) to -number?
(52%)
How to change text file with hexidecimal format into original binary file?
(52%)
How to change all numbers in a text file to the comma separated numbers?
(52%)
How to change all numbers which have format of (number) to -number?
(52%)
How to convert the text from hex to decimal in a file?
(51%)
Check Demo of
Advanced search and replace