- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Qestion First: I need to regex to match
111
or111.
or111.111
(just aritrarty numbers) for aDocumentFilter
. I need the user to be able to input111.
with adecimal
and nothing afterwards. Can't seem to get it right.
我找到的所有正则表达式都只匹配所有十进制数字,即
12343.5565
32.434
32
喜欢这个正则表达式
^[0-9]*(\\.)?[0-9]+$
问题是,我需要 DocumentFilter
的正则表达式,因此输入只能是带/不带小数点的数字。 但要注意的是它也需要匹配
1223.
因此用户可以将小数输入到文本字段中。所以基本上我需要正则表达式来匹配
11111 // all integer
11111. // all integers with one decimal point and nothing after
11111.1111 // all decimal numbers
我目前的模式是上面那个。这是一个测试程序(Java用户)
可以在这一行输入花样
Pattern regEx = Pattern.compile("^[0-9]*(\\.)?[0-9]+$");
如果正则表达式符合要求,那么您将能够输入 111
或 111.
或 111.111
。
运行它:)
import java.awt.GridBagLayout;
import java.util.regex.*;
import javax.swing.*;
import javax.swing.text.*;
public class DocumentFilterRegex {
JTextField field = new JTextField(20);
public DocumentFilterRegex() {
((AbstractDocument) field.getDocument()).setDocumentFilter(new DocumentFilter() {
Pattern regEx = Pattern.compile("^[0-9]*(\\.)?[0-9]+$");
@Override
public void insertString(DocumentFilter.FilterBypass fb, int off, String str, AttributeSet attr)
throws BadLocationException {
Matcher matcher = regEx.matcher(str);
if (!matcher.matches()) {
return;
}
super.insertString(fb, off, str, attr);
}
@Override
public void replace(DocumentFilter.FilterBypass fb, int off, int len, String str, AttributeSet attr)
throws BadLocationException {
Matcher matcher = regEx.matcher(str);
if (!matcher.matches()) {
return;
}
super.replace(fb, off, len, str, attr);
}
});
JFrame frame = new JFrame("Regex Filter");
frame.setLayout(new GridBagLayout());
frame.add(field);
frame.setSize(300, 150);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new DocumentFilterRegex();
}
});
}
}
编辑:
我最初假设传递给方法的 str
是整个文档字符串,所以我很困惑为什么答案不起作用。我意识到它只是传递了字符串的尝试插入部分。
也就是说,如果您从 FilterBypass 获取整个文档字符串并根据整个文档字符串检查正则表达式,那么答案就很完美。有点像
@Override
public void insertString(DocumentFilter.FilterBypass fb, int off, String str, AttributeSet attr)
throws BadLocationException {
String text = fb.getDocument().getText(0, fb.getDocument().getLength() - 1);
Matcher matcher = regEx.matcher(text);
if (!matcher.matches()) {
return;
}
super.insertString(fb, off, str, attr);
}
最佳答案
以下正则表达式可能适合您:
^[0-9]+[.]?[0-9]{0,}$
量词 {0,}
将匹配零个或多个数字。
关于java - DocumentFilter 的正则表达式匹配所有十进制数字,但也匹配末尾只有小数点的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21704583/
我正在创建一个自定义DocumentFilter。 但是,我必须在几个不同的组件上使用它。它们之间的唯一区别是字符限制,可以通过更改单个变量来更改字符限制。 问题是,如何将该变量传递给 Documen
您好,我有以下代码: AbstractDocument d = (AbstractDocument)editorText.getDocument(); d.setDocumen
我知道这是一个常见问题,但我正在尝试创建一个只接受 int 数字的 TextField,这几乎完成了,这是代码: 创建文本框: nome = new JFormattedTextField();
我正在尝试运行此代码: How to change the color of specific words in a JTextPane? private final class CustomDocu
我想在我的DocumentFilter上有一个这样的方法 public void replaceUpdate(int offset, int length, String text) {
我尝试将其他人为我需要的自定义 PlainDocument 组合在一起,但由于我不知道 PlainDocument 的机制,所以我失败了,它不起作用。我需要一些东西来确保我的文本字段只允许 2 个字母
Click here to show the gif DocumentFilter df = new DocumentFilter(){ @Override public void insertSt
我有一个程序,可以从 JTextField 中删除所有非数字字符并将其限制为 5 位数字。但此文档过滤器还删除了退格功能,这意味着我无法编辑已完成的输入。如何在不删除过滤器的情况下再次添加退格键? 编
我正在尝试为我的 JTextArea 设置一个 documentFilter。重写 insert(...) 方法后,我承认它从未被调用。怎么了?一段代码: package jaba; import j
所以,我有一个带有 JTextArea 和 DocumentFilter 的程序。它应该(除其他事项外)过滤掉制表符并防止它们完全输入到 JTextArea 中。 好吧,我打字的时候效果很好,但我仍然
我对 JFormattedTextField 有疑问(我将它用作我们所有文本字段的基类)。 今天我尝试向该字段的文档添加一个文档过滤器,它工作得很好,但前提是它没有设置格式化程序工厂。 问题是,当设置
Qestion First: I need to regex to match 111 or 111. or 111.111 (just aritrarty numbers) for a Docume
我正在使用 jtextarea 和文档过滤器。我希望只要用户在其中按下“b”,整个文本就会被删除,除了第一个字母。我怎样才能做到这一点。有些想法会很有用。 public void replace(Fi
我认为这一定是代码中的一个简单错误或我的误解,但我无法获得 DocumentFilter 来检测 insertString 事件。下面是一个简单的大写字母过滤器,但这并不重要,因为 insertStr
我正在尝试为我的 JTextArea 设置一个 documentFilter。覆盖了 insert(...) 方法后,我承认它从未被调用过。怎么了?一段代码: package jaba; import
我一直在努力理解这个 DocumentFilter 业务,就在我觉得我已经基本理解它时,我尝试了一个简单的测试用例,但它没有任何意义。 因此最初的目标是创建一个简单的 DocumentFilter 以
我想确保我的 JTextField 中始终有一个正整数。例如,当创建 GUI 时,JTextField 目前有一个默认值“1”,我希望它能够在用户决定按退格键时,而不是成为一个空文本字段,我希望它自动
我的问题如下: 我有一个: public class WWFormattedTextField extends JFormattedTextField implements FocusListener
我正在使用: String s = JOptionPane.showInputDialog(...); 从用户那里得到对问题的回复;该对话框设置为显示响应的文本字段。我想将响应中允许的字符限制为仅字母
我需要一个 JFormattedTextField 只允许输入 ##-###** 其中连字符始终出现在文本字段中,最后一个2 个字符,由 * 表示,可以是 2 个字母表 (a-z/A-Z),也可以什么
我是一名优秀的程序员,十分优秀!