取字符串中的字符串

来源:互联网 发布:sql无法删除表 编辑:程序博客网 时间:2024/06/06 00:41
[转]Python: 去掉字符串中的非数字(或非字母)字符

>>> crazystring = ‘dade142.;!0142f[.,]ad’

只保留数字
>>> filter(str.isdigit, crazystring)
‘1420142′

只保留字母
>>> filter(str.isalpha, crazystring)
‘dadefad’

只保留字母和数字
>>> filter(str.isalnum, crazystring)
‘dade1420142fad’

如果想保留数字0-9和小数点’.’ 则需要自定义函数

>>> filter(lambda ch: ch in ‘0123456789.’, crazystring)
‘142.0142.’

 

 

string str = "er34sd43.re34";
 str=System.Text.RegularExpressions.Regex.Replace(str,@"[^0-9.]",string.Empty);

string str = Regex.Replace("a12.34d", "//d+", "");

 

 

 

 

//
/// 去掉字符串中的数字 

 public static string RemoveNumber(string key)
{
    return System.Text.RegularExpressions.Regex.Replace(key, @"/d", "");
}

 

///
/// 去掉字符串中的非数字
 public static string RemoveNotNumber(string key)
{
    return System.Text.RegularExpressions.Regex.Replace(key, @"[^/d]*", "");
}

 

原创粉丝点击