Searched refs:input_string (Results 1 – 4 of 4) sorted by relevance
1214 def phone_number_formatter(input_string, formatter=None): argument1230 if not input_string:1234 input_string = input_string.replace(" ", "").replace("-", "").replace(1238 if (len(input_string) == 131239 and (input_string[0:3] == "+81" or input_string[0:3] == "+82")):1240 input_string = "0" + input_string[3:]1241 return input_string1244 return input_string1247 input_string = input_string.lstrip("0")1250 if (len(input_string) == PHONE_NUMBER_STRING_FORMAT_11_DIGIT[all …]
71 def connection_type_from_type_string(input_string): argument72 if input_string in _ConnectionTables.connection_type_tbl:73 return _ConnectionTables.connection_type_tbl[input_string]
123 def _InputIsEmpty(input_string): argument135 if input_string is None:137 if input_string == "":
45 def _string_to_float(input_string): argument48 tmp = float(input_string)50 print(input_string)