我似乎花了很多时间在电子表格中处理以下公式:
="some text '" & A1 & "', more text: '" & A2 &" etc."
Run Code Online (Sandbox Code Playgroud)
使用printf或String.Format字符串会更快
=String.Format ("Some text '{0}', more text: '{1}'",A1,A2)
Run Code Online (Sandbox Code Playgroud)
是否有类似于Excel内置的内容,或者我可以在不编写宏的情况下调用CLR吗?
我在汇编中调试了CLR代码,并且排成一行
mov rax, qword ptr [ff4053c0h]
Run Code Online (Sandbox Code Playgroud)
我想qword ptr [ff4053c0h]是指我感兴趣的字符串,但ff4053c0h不是有效的内存位置.阅读qword ptr它似乎引用了一个基于基址寄存器的地址(例如qword ptr [rsp+30h],堆栈中有30个字节),但是我找不到没有基址寄存器的含义.