我想运行一个查询来查找另一个字符串的两个括号内的字符串: Example of string: Brand: EWALDO
Return = WALDO
谢谢
发布于 2016-09-27 22:18:41
试试这个:
Mid(strSource,
InStr(1, strSource, "[") + 1,
InStr(strSource, "]") - InStr(strSource, "[") - 1)https://stackoverflow.com/questions/39726902
复制相似问题