我正在尝试提取这个(“5013a27a-3e44d69d-4120-080027a10080”不同)
/vmfs/volumes/5013a27a-3e44d69d-4120-080027a10080
出这个(这是一个字符串):
name datastore1
url /vmfs/volumes/5013a27a-3e44d69d-4120-080027a10080
capacity 123480309760
freeSpace 96355745792
accessible 1
type VMFS
multipleHostAccess <unset>
所以我做了以下,但它不工作:
Regex regex = new Regex(@"[/][A-Za-z0-9/-][/] [ ]");
MatchCollection match = regex.Matches(input);
我哪里出错了?