我一直在尝试将输入格式化为每三个字符一个空格,直到句点字符。
例如:
999999999 => 999 999 999
33333.25 => 33 333.25
222.32 => 222.32
4444 => 4 444
这是我到目前为止所做的:
$(this).on('keyup', function(){
$(this).val( $(this).val().replace(/(\d{3})(?=.)/g, "$1 ") );
});
但这导致了这个:
999999999 => 999 999 999确定
33333.25 => 333 33.25不行
222.32 => 222 .32不行
4444 => 444 4不行
答案 0 :(得分:6)
您可以使用这个基于前瞻性的正则表达式:
str = str.replace(/(?!^)(?=(?:\d{3})+(?:\.|$))/gm, ' ');
RegEx分手:
(?!^) # Assert we are not at start of line
(?= # start of positive lookahead
(?:\d{3})+ # assert there are 1 or more of 3 digit sets ahead
(?:\.|$) # followed by decimal point or end of string
) # end of lookahead