gpt4 book ai didi

java - 查找字符串内的子字符串

转载 作者:行者123 更新时间:2023-12-01 17:39:37 27 4
gpt4 key购买 nike

如何在字符串中找到子字符串,然后记住并在找到它时将其删除。

示例:

select * from (select a.iid_organizacijske_enote, 
a.sifra_organizacijske_enote "Sifra OE",
a.naziv_organizacijske_enote "Naziv OE",
a.tip_organizacijske_enote "Tip OE"

我想获取“”内的所有单词,所以

  • Sifra OE
  • 纳粹 OE
  • 提示 OE

并返回

select * from (select a.iid_organizacijske_enote, 
a.sifra_organizacijske_enote,
a.naziv_organizacijske_enote,
a.tip_organizacijske_enote

我尝试使用正则表达式,indexOf()但没有人能正常工作

最佳答案

String.replace(..) :

Replaces each substring of this string that matches the literal target sequence with the specified literal replacement sequence. The replacement proceeds from the beginning of the string to the end, for example, replacing "aa" with "b" in the string "aaa" will result in "ba" rather than "ab".

str = str.replace(wordToRemove, "");

如果您事先不认识单词,可以使用regex version :

str = str.replaceAll("\"[^\"]+\"", "");

这意味着,所有以引号开头和结尾的字符串,以及它们之间除引号之外的任何字符,都将被替换为空字符串。

关于java - 查找字符串内的子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2689667/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com