To split a string every N characters, call the match() method on the string, passing it the following regular expression /.{1, N}g/ . The match method will ...
確定! 回上一頁