正規表現の例

概要

数字以外を除去

function trimNonNumericCharacters(input) { 
	return input.replace(/\D/g, ''); 
}