English 中文(简体)
拆分一个指令的矩形
原标题:regex to split an instruction
  • 时间:2012-05-23 17:08:46
  •  标签:
  • java
  • regex

我需要在 Java 使用 split () 方法分割组装代码行。 以下为样本代码 :

String line = "Add a, b, c";
String[] parts = line.split("[\s+,]");
System.out.println(Arrays.toString(parts));

<强>UUTPUT:

[Add, a, , b, c]

我需要输出像:

[Add, a, b, c]

用于下列任何一种投入:

String line = "Add a,b,c";
String line = "Add   a  ,b,c";
String line = "Add a,  b,c";
String line = "Add a,b , c";
String line = "Add a , b , c";

或任何类似案件。

取代 [\\s+] 的权利是什么?

最佳回答

应采取下列行动:

String[] parts = line.split("[\s,]+");

您当前的正反方正匹配一个空格, 或完全匹配一个 , 或完全匹配一个逗号 。

上述正方形符合一个或多个空格和/或逗号。

区别在于 的位置:当它出现在字符类中时,它被直截了当地解释。

问题回答

[\\]\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

尝试一些大致如下的尝试:

Add? ([0-9]+)?,?,([0-9]+)?,?,([0-9]+)??"

"[Add 1, 2, 3]"

([0-9]+) should let it take any sized number

_? should make room for an optional space

1 should backreference to the value first found by the first set of ()

2 " " " " " " " second set of ()

3 " " " " " " " third set of ()

The logic is sound but make sure my syntax is correct.





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...