Is it possible to sort metabox teaxtarea values?

$values = get_option( 'option_name')
// Create array from string
$values_array = explode( PHP_EOL, $values );
sort( $values_array );
// Create string from sorted array
$sorted_values = implode( PHP_EOL, $values_array );

Read more about the sort function