Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将显示中的值更改为以下内容:
100.25 美元到 10025
需要采用这种格式才能通过支付网关。
您可以使用String.delete方法:
"$100.25".delete("$.") => 10025
I need to create a heterogeneous List of objects (custom classes). My first thought was to create a List<ISomeMarkerInterface> but I quickly learned that this is not what I want
List
List<ISomeMarkerInterface>