menu
my_string_util package
documentation
MyStringUtil.dart
MyStringUtil_c
removeAllSpace static method
removeAllSpace static method
dark_mode
light_mode
removeAllSpace
static method
String
removeAllSpace
(
String
str
)
移除所有空白符号
Implementation
static String removeAllSpace(String str) { return str.replaceAll(RegExp(r"\s+"), ""); }
my_string_util package
documentation
MyStringUtil
MyStringUtil_c
removeAllSpace static method
MyStringUtil_c class