using System.Text;
using System.Globalization;
using System.Text.RegularExpressions;
///
/// 获得指定顺序的字符在字符串中的位置索引
///
/// 字符串
/// 顺序
///
public static int IndexOf(string s, int order)
{
return IndexOf(s, '-', order);
}
///
/// 获得指定顺序的字符在字符串中的位置索引
///
/// 字符串
/// 字符
/// 顺序
///
public static int IndexOf(string s, char c, int order)