<?php $mystring = "‐200"; $unicode_hyphen = '‐'; // E2 80 90 is the Unicode multibyte hyphen character your PDFs seem to contain $ascii_hyphen = '-'; $myint = intval(str_replace($unicode_hyphen , $ascii_hyphen , $mystring)); var_dump($myint);
You have javascript disabled. You will not be able to edit any code.