本文介绍了在StringTokenizer中使用多个分隔符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何在java中使用带有StringTokenizer的多个分隔符。
例如,其中一个!,*,/,^ 将作为分隔符出现。此外,一次只能有一个。

I'd like to know how I can use multiple delimiters with StringTokenizer in java.For example one of these !,*,/,^ will occur as a delimiter. Also there will only be one at a time.

推荐答案

使用,其中第二个是分隔符。

Use the constructor with two arguments, where the second is the delimiters.

StringTokenizer tokenizer = new StringTokenizer(yourString, "!*^/");

这篇关于在StringTokenizer中使用多个分隔符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 05:27