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
Count and statistics
Character encoding
Bin Hex Oct Dec converter
Text generator
Text sort
Text merge
Text data calculation
RSS: Replace Pioneer Examples
871.Text file parser -- How to extract all characters within specified char set from a text file?
User:
editor -- 2011-10-11
<< 870
872 >>
Hits:
217
Type:
Text file parser
Search all
Text file parser
examples
Description:
How to extract all characters within specified char set from a text file? For example, how to extract all Chinese characters(from 0x4e00-0x9fa5) and newline(0x0a) characters?
Input Sample:
»ΆΣ welcome
welcome »ΆΣ
Output Sample:
»ΆΣ
»ΆΣ
Answer:
Hint: You need to
Download and install "Replace Pioneer"
on windows platform to finish following steps.
1. ctrl-o open text file
2. ctrl-h open 'replace' dialog
* set 'search for pattern' to:
.
* set 'replace with pattern' to:
$match
* set 'if' to:
ord($match)>= 0x4e00 && ord($match)<= 0x9fa5 || ord($match)==0x0a
* uncheck "print unmatched units" option.
3. click 'Replace', done.
Screenshot 1: Replace_Window
Similar Examples:
How to extract all lines with specified date range from text file?
(74%)
How to extract all specified date format from a text file?
(72%)
How to extract multiple lines in specified order from many text files?
(67%)
How to extract all specified links from a html file?
(67%)
How to extract all html address from a text file?
(65%)
How to extract all IP address from a text file?
(64%)
How to batch extract specified lines from a text file?
(64%)
How to remove/delete all characters except number and spaces in a text file?
(63%)
Check Demo of
Text file parser
Keywords:
chinese characters
chinese
chin
newline
all characters
unmatched
example
examp
unmatch
characters
replace example
replace characters
text file search extract
extract from text
text file parser open
text parser
extract text
search from file