sublimetext2 - Regex: how to simplify numbers? -


given numbers large number of decimals, such:

213.094783481320923547301 093.7914840234913405 ... 

how keep first 3 decimals, result :

213.094 093.791 

try using:

find:

(\d+\.\d{3})\d+ 

replace with:

$1 

Comments

Popular posts from this blog

c# - Pausing a storyboard on TabItem mouse over -

erlang - Saving a digraph to mnesia is hindered because of its side-effects -

mongodb - Struggling to get ordered results from the last retrieved article, given array of elements to search in -