示例#1
0
        public static string ConvertNarrowFontToAlpha(string str)
        {
            //arrow fontの解決
            string ret = RegexCache.Replace(str, @"\[_([a-zA-Z0-9])\]", "$1");   ///No Translate

            return(U.table_replace(ret, replaceNarrowFontToAlpha));
        }
示例#2
0
 string  ReplaceOffsetAddress(string code)
 {
     return(RegexCache.Replace(code, "(0x0.......)", "$1 + . - origin"));
 }
示例#3
0
 string  ReplaceOffsetAddress(string code)
 {
     return(RegexCache.Replace(code, "#?(0x0?[8-9][0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f])", "$1 + . - origin"));
 }