1

我正在尝试使用替换功能从字段中删除字符。

例子:

Country       My goal:
Finland?      Finland 
Poland?       Poland

我在写:
Replace([Country],"*?","") 但它并没有取代?角色。

怎么了?

4

1 回答 1

2

Replace函数完全替换给定的字符串......不需要通配符。

所以"*?"是错误的,因为那会替换确切的 string *?,例如 in Antarctica*?

您需要"?"改用:

Replace([Country],"?","")
于 2013-09-24T21:58:52.510 回答