ここで実行できる別のオプションは、Negative Lookaheadを使用することです。
Find: \s+(?![^,])
Replace:
正規表現:
\s+ whitespace (\n, \r, \t, \f, and " ") (1 or more times)
(?! look ahead to see if there is not:
[^,] any character except: ','
) end of look-ahead
または、単語の文字がないかどうかを先読みします。
Find: \s+(?!\w)
Replace:
正規表現:
\s+ whitespace (\n, \r, \t, \f, and " ") (1 or more times)
(?! look ahead to see if there is not:
\w word characters (a-z, A-Z, 0-9, _)
) end of look-ahead
ここで前向き先読みを使用して、単語以外の文字があるかどうかを確認することもできます。
Find: \s+(?=\W)
Replace: