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.
是否有内置函数可以在 BCL中获取ghifrom ?www.abc.com/def/ghi我知道创建一个可以做到这一点的小方法非常容易,但我想知道是否已经有一些东西可以为我处理它。
ghi
www.abc.com/def/ghi
如果它也能得到我def,abc那将是一个奖励。
def
abc
您可以将 url 传递给Uri 类构造函数并检查Segments属性。或者,如果您拥有的字符串可能无效,您可以先尝试使用TryCreate方法对其进行解析。
对于 .net 只需使用 String.Split
myString.Split('/')
在 bash 中,标准 (1) 和错误 (2) 输出可以通过以下方式重新路由和丢弃:
>/dev/null 2>&1
但是下面的例子做了一些不同的事情:
nohup myscript.sh >myscript.log 2>&1 </dev/null &
<