Base64 报错 的解决办法, 报错如下:1. FormatException: The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or a non-white space character among the padding characters. ] System.Convert.FromBase64Str
mysql判断是否包含某个字符的方法用locate 是最快的,like 最慢.position一般实战例子:select * from historydatawhere locate('0',opennum) and locate('1',opennum)order by number desc limit 10; 方法一:locate(字符,字段名)使用locate(字符,字段名)函数,如果包含,返回>0的数,否则返回0 , 它的别名是 position inselect * from 表名