如何在 TextWatcher 中验证 URL 同时匹配空字符串
How do I validate a URL in a TextWatcher while also matching with an empty string
我有一个 TextWatcher 检查 URL 是否有效。如果 URL 满足 URL 格式,其中 "http"、"https"、"www" 等是可选的,则 URL 是有效的。如果它是一个空字符串,它也是有效的。如果 URL 无效,EditText 将显示一条错误消息。这是我当前的实现:
private TextWatcher websiteLinkWatcher = new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if(websiteLayout.getError() != null) websiteLayout.setErrorEnabled(false);
}
@Override
public void afterTextChanged(Editable s) {
String websiteFormat = "^(|https?:\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?){0,140}$";
if(s.toString().trim().length() > 140 || !s.toString().matches(websiteFormat)) {
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
websiteLayout.setErrorEnabled(true);
websiteLayout.setError("The provided website is not valid.");
}
}, 2000);
saveEnabled.setBackgroundColor(getResources().getColor(R.color.grey200));
saveEnabled.setClickable(false);
// disable
}
else {
saveEnabled.setBackgroundColor(getResources().getColor(R.color.blue500));
saveEnabled.setClickable(true);
// enable
}
return;
}
};
正则表达式非常不一致。它的唯一优点是它适用于空字符串(即不显示错误消息)。目前,接受http://example.com
、https://example.com
、空字符串。 https://www.example.com
有时会被接受或拒绝。 www.example.com
和 example.com
被拒绝。
String pattern = "(https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|www\.[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9]\.[^\s]{2,}|www\.[a-zA-Z0-9]\.[^\s]{2,})";
将匹配以下情况
http://www.foufos.gr
https://www.foufos.gr
http://foufos.gr
http://www.foufos.gr/kino
http://www.t.co
http://t.co
http://werer.gr
www.foufos.gr
www.mp3.com
www.t.co
不会匹配以下内容
www.foufos
http://www.foufos
http://foufos
www.mp3#.com
www.foufos-.gr
www.-foufos.gr
关于空字符串,首先检查它是否为空,然后检查模式:
if(yourstring.length() == 0 || yourstring.matches(pattern)) {
// do something
}else{
// show validation warning
}
source
我有一个 TextWatcher 检查 URL 是否有效。如果 URL 满足 URL 格式,其中 "http"、"https"、"www" 等是可选的,则 URL 是有效的。如果它是一个空字符串,它也是有效的。如果 URL 无效,EditText 将显示一条错误消息。这是我当前的实现:
private TextWatcher websiteLinkWatcher = new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if(websiteLayout.getError() != null) websiteLayout.setErrorEnabled(false);
}
@Override
public void afterTextChanged(Editable s) {
String websiteFormat = "^(|https?:\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?){0,140}$";
if(s.toString().trim().length() > 140 || !s.toString().matches(websiteFormat)) {
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
websiteLayout.setErrorEnabled(true);
websiteLayout.setError("The provided website is not valid.");
}
}, 2000);
saveEnabled.setBackgroundColor(getResources().getColor(R.color.grey200));
saveEnabled.setClickable(false);
// disable
}
else {
saveEnabled.setBackgroundColor(getResources().getColor(R.color.blue500));
saveEnabled.setClickable(true);
// enable
}
return;
}
};
正则表达式非常不一致。它的唯一优点是它适用于空字符串(即不显示错误消息)。目前,接受http://example.com
、https://example.com
、空字符串。 https://www.example.com
有时会被接受或拒绝。 www.example.com
和 example.com
被拒绝。
String pattern = "(https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|www\.[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9]\.[^\s]{2,}|www\.[a-zA-Z0-9]\.[^\s]{2,})";
将匹配以下情况
http://www.foufos.gr
https://www.foufos.gr
http://foufos.gr
http://www.foufos.gr/kino
http://www.t.co
http://t.co
http://werer.gr
www.foufos.gr
www.mp3.com
www.t.co
不会匹配以下内容
www.foufos
http://www.foufos
http://foufos
www.mp3#.com
www.foufos-.gr
www.-foufos.gr
关于空字符串,首先检查它是否为空,然后检查模式:
if(yourstring.length() == 0 || yourstring.matches(pattern)) {
// do something
}else{
// show validation warning
}
source