Text Data Calculation
Example:
Calculate area of triangle
Replace Procedures:
1. ctrl-o open source text file
2. ctrl-h open replace window
* set 'replace unit' to 'Line'
* set 'replace with pattern' to:
Area of triangle \($A,$B,$C\) is calc(sqrt($P*($P-$A)*($P-$B)*($P-$C)),'.2f')\n
* click 'Advanced' page, set 'Run following for each matched unit' to:
($A,$B,$C)=($match[1],$match[2],$match[3]);
$P=($A+$B+$C)/2;
3. click 'replace', done.
4. ctrl-s save to file.
Notes:
For batch replace files, please refer to Replace Pioneer help manual.