我正在寻求以替代功能取代所有特殊性的方法。 我想利用Razak syntax,但这只是这样。
@Product.Name.Regex.Replace(@"[^A-Za-z0-9/s/g]", "_")
不是trick。
我曾试图这样做。
@Regex.Replace(@Product.Name,@"[^A-Za-z0-9/s/g]", "_")
它也失败了。
By now I ve tried a lot of other things and a lot of times I keep getting this error message: "The name Regex does not exist in the current context"
谁能提供帮助?