Skyvern/skyvern/webeye/string_util.py
2024-03-01 10:09:30 -08:00

5 lines
98 B
Python

import re
def remove_whitespace(string: str) -> str:
return re.sub("[ \n\t]+", " ", string)