用String Java从葡萄牙语中提取日期[复制]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用String Java从葡萄牙语中提取日期[复制]相关的知识,希望对你有一定的参考价值。
这个问题在这里已有答案:
我想从String中提取数据,这个String有时会以不同的方式出现。例如,它可以是以下任何一种:
Portaria n° 200, 28 de janeiro de 2018.
Portaria n° 200, 28 de janeiro de 2018 da Republica Brasileira.
Portaria n° 200 28 de janeiro de 2018.
Portaria n° 200 2017/2018 de 28 de janeiro de 2018.
没有模式。我尝试过xsplit:它在某些情况下有效,但它不能一直工作。
String receberTextoIdentifica = (xmlUtil.xpathElement(documentOrigem, Constantes.GETIDENTIFICACAO).getTextContent());
LocalDateTime receberDataEnvio = materiaDto.getDataEnvio();
Integer receberDataEnvioAno = receberDataEnvio.getYear();
if (receberTextoIdentifica != null && receberTextoIdentifica.toLowerCase().contains("" + receberDataEnvioAno)) {
Element dataTexto = documentDestino.createElement("dataTexto");
estruturas.appendChild(dataTexto);
receberTextoIdentifica = receberTextoIdentifica.substring(0, receberTextoIdentifica.indexOf("" + receberDataEnvioAno) + 4);
String words[] = receberTextoIdentifica.split(" ");
String lastFive = words[words.length - 5] + " " + words[words.length - 4] + " " + words[words.length - 3] + " "
+ words[words.length - 2] + " " + words[words.length - 1];
dataTexto.setTextContent(lastFive);
答案
首先使用正则表达式在字符串中查找日期,然后使用DateTimeFormatter
将其解析为LocalDate
:
Pattern datePattern = Pattern.compile("\d{1,2} de [a-zç]{4,9} de \d{4}");
DateTimeFormatter portugueseDateFormatter
= DateTimeFormatter.ofLocalizedDate(FormatStyle.LONG)
.withLocale(Locale.forLanguageTag("pt-BR"));
String[] differentStrings = {
"Portaria n° 200, 28 de janeiro de 2018.",
"Portaria n° 200, 28 de janeiro de 2018 da Republica Brasileira.",
"Portaria n° 200 28 de janeiro de 2018.",
"Portaria n° 200 2017/2018 de 28 de janeiro de 2018."
};
for (String s : differentStrings) {
Matcher m = datePattern.matcher(s);
if (m.find()) {
String dateString = m.group();
LocalDate date = LocalDate.parse(dateString, portugueseDateFormatter);
System.out.println("Date found: " + date);
} else {
System.out.println("No date found in " + s);
}
}
输出是:
Date found: 2018-01-28 Date found: 2018-01-28 Date found: 2018-01-28 Date found: 2018-01-28
正则表达式接受一个月或两个数字的日期,然后de
(前后空格),4到9个小写字母的月份名称,包括ç
(março
(3月),de
again和4位数年份)。
您可能希望从解析中捕获DateTimeParseException
,甚至可能再次尝试find
以查看实际日期是否在字符串中稍后出现。
另一答案
@Ole建议的另一种one方式。
该方法从字符串中获取数据,而不将其转换为日期对象。
码:
import java.util.Scanner;
import java.util.Arrays;
import java.util.List;
class Main {
public static void main(String[] args) {
String[] strs = {
"Portaria n° 200, 28 de janeiro de 2018",
"Portaria n° 200, 28 de janeiro de 2018 da Republica Brasileira",
"Portaria n° 200 28 de janeiro de 2018",
"Portaria n° 200 2017/2018 de 25 de janeiro de 2018"
};
String months[] = {"janeiro", "fevereiro", "marco", "abril", "maio", "junho", "julho", "agosto", "setembro", "outubro", "novembro", "dezembro"};
int i,j;
for(i = 0; i < strs.length; i++) {
String test_array [] = strs[i].split(" ");
for (j = 3; j < test_array.length - 2; j++) {
if(Arrays.asList(months).contains(test_array[j])) {
System.out.println(test_array[j-2]+ " " + test_array[j-1]+" " +test_array[j]+ " " +test_array[j+1]+ " " +test_array[j+2]);
}
}
}
}
}
输出:
28 de janeiro de 2018
28 de janeiro de 2018
28 de janeiro de 2018
25 de janeiro de 2018
在行动here看到这个。
以上是关于用String Java从葡萄牙语中提取日期[复制]的主要内容,如果未能解决你的问题,请参考以下文章
为啥我不能从我的 DataFrame 中的“日期”列中提取月份的列? [复制]