1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Merge pull request #921 from bencates/master

Clean up ugly regex to use POSIX character class
This commit is contained in:
Jo Liss 2012-12-31 17:37:25 -08:00
commit 3daca9e935

View file

@ -13,10 +13,7 @@ module Capybara
# @return [String] Normalized text
#
def normalize_whitespace(text)
# http://en.wikipedia.org/wiki/Whitespace_character#Unicode
# We should have a better reference.
# See also http://stackoverflow.com/a/11758133/525872
text.to_s.gsub(/[\s\u0085\u00a0\u1680\u180e\u2000-\u200a\u2028\u2029\u202f\u205f\u3000]+/, ' ').strip
text.to_s.gsub(/[[:space:]]+/, ' ').strip
end
##