If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
For BC3 Standard, the easiest method would be to define a Regular Expression that matches on the Important part of the number, and then everything else is unimportant. Would this work for your comparison?
\d+\.\d{3}
For BC3 Pro, you can create a Text Replacement in the Session Settings, Replacements tab. Here, create:
(\d+\.\d{3})\d*
RegEx that replaced with:
$1
This Replacement does not require you to define 'Everything Else' as unimportant, but you may need to create two replacements: one for Left to Right and one for Right to Left.
Comment