Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
394 views
in Technique[技术] by (71.8m points)

string - Splitting filename - weird behavior

I'm trying to split a filename like XXX_YYYY-YYYY_fff.xxx

If I'm using

'XXX_YYYY-UUUU_fff.xxx' -split '[-_`.]'

everything is working fine, showing:

XXX
YYYY
UUUU
fff
xxx

But when I'm using

'XXX_YYYY-UUUU_fff.xxx' -split '[_-`.]'

it does not split on dashes:

XXX
YYYY-UUUU
fff
xxx

Can anybody explain why?

question from:https://stackoverflow.com/questions/65945989/splitting-filename-weird-behavior

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

- specifies a range of characters in a regular expression. To get what you want, "escape" the - with ; e.g.:

C:> 'XXX_YYYY-UUUU_fff.xxx' -split '[_-.]'
XXX
YYYY
UUUU
fff
xxx

i.e., split the string using any of the following characters: _, -, or ..

You can also tell the regular expression parser that the - is a literal character in the set by placing it at the beginning of the set just after the [ or at the end of the set by placing it just before the ], as in:

[-_.]

or

[_.-]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...