# groovy字符串分隔

groovy可以使用 `|` 来表示 `或` ，在字符串分隔时可以使用

```groovy
String[]tokens = pdfName.split("-|\\.");
```

可以将 `AA.BB-CC-DD.zip` 切分成

```
AA
BB
CC
DD
zip
```

## 参考

* [Use String.split() with multiple delimiters](https://stackoverflow.com/questions/5993779/use-string-split-with-multiple-delimiters)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://huataihuang.gitbook.io/cloud-atlas-draft/develop/java/groovy/groovy_split_string.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
