📌  相关文章
📜  删除字符串后的所有文本 c# 代码示例

📅  最后修改于: 2022-03-11 14:49:13.429000             🧑  作者: Mango

代码示例1
string input = "text?here";
int index = input.LastIndexOf("?"); // Character to remove "?"
if (index > 0)
    input = input.Substring(0, index); // This will remove all text after character ?