oracle怎样查找某个字符所在字符串第n次出现的位置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle怎样查找某个字符所在字符串第n次出现的位置相关的知识,希望对你有一定的参考价值。

INSTR(string,set[,start [,occurrence ] ] ) 如果指定start,oracle则跳过前面所有字符串到该位置开始搜索,occurence,是强迫instr跳过前几次与字符串匹配,给出下一次匹配的位置,如果occurence指定3,那就是匹配第三次的位置了。

例 instr('ABACAAA','A',2,2) 从ABACAAA中匹配A这个字符串,从2个位置开始匹配,匹配第2次A所在的位置。PS:如果set中不止有一个字符而是有几个字符组成的,则INSTR给出该字符集中的第一个字符的位置。

NSTR方法的格式为

INSTR(源字符串, 目标字符串, 起始位置, 匹配序号)。也可以表示为INSTR(源字符串, 目标字符串),起始位置, 匹配序号默认都为1.

例如:INSTR('CORPORATE FLOOR','OR', 3, 2)中,源字符串为'CORPORATE

FLOOR', 目标字符串为'OR',起始位置为3,取第2个匹配项的位置。

默认查找顺序为从左到右。当起始位置为负数的时候,从右边开始查找。

所以SELECT INSTR('CORPORATE FLOOR', 'OR', -1, 1) "Instring" FROM DUAL

的显示结果是

Instring

参考技术A instr函数就可以解决。
instr('源字符串' , '目标字符串' ,'开始位置','第几次出现')
平常我们都是默认是从第一位开始第一次出现的位置,所以后面两个省略了,其实是有这方面参数的。本回答被提问者采纳

从字符串中查找 C++ 第 n 次出现的子字符串

【中文标题】从字符串中查找 C++ 第 n 次出现的子字符串【英文标题】:Find C++ nth occurrence of a substring from a string 【发布时间】:2013-06-10 11:55:20 【问题描述】:

我查看了网站,但没有直接回答以下问题。

在 C++ 中查找字符串中第 n 次出现的子字符串的最有效方法是什么?

此处的示例显示了如何找到第二个匹配项: http://www.cplusplus.com/reference/string/string/find/

但是首先找到第一个匹配项,然后使用该位置搜索下一个匹配项等以找到第 n 个匹配项,似乎效率很低。如果你想要第25场比赛的位置,有没有更快的方法?

编辑:在更大的上下文中,我正在逐行读取文件,对项目的每个响应都有一个分数,有些则丢失了,得到一个NA 字符串。所有项目都用空格分隔。

我希望有排除某些项目的选项,因此仅从项目 35 到 80、90 到 120 和 150-200 进行搜索。 所以我现在做的是这样的:

string blockedLine(string line)

  int b_start[] = 35, 90, 150;
  int b_end[] = 80, 120, 200;
  std::vector<int> space_matches = KMP(line, " ");
  string cuttedLine = "";
  for (int i = 0; i < 3; i++)
    
      cuttedLine.append(line.substr(space_matches[b_start[i]],
                                    space_matches[b_end[i]]));
    
  return(cuttedLine);

KMP 是其中一个 cmets 中提到的函数,它可以获取空间出现的位置,并将它们存储在 space_matches 中。

然后我计算NA 在这个附加字符串中的出现次数。 问题是,如果没有这个附加,在大约 200k 行上读取整行只需要 1 秒。当我使用这种附加方法获取子字符串时,需要 14 秒,这太慢了。

有哪些改进可以加快速度?

【问题讨论】:

我会用谷歌搜索 C++ String Tokenizer,它应该会生成一个列表或一个向量。 @ForEveR rfind 不是要找到最后一次出现吗? 有一些巧妙的技巧可用于非常大的数据集,但对于大多数较小的数据集,您最好只在任一端循环。 (显然还取决于您所说的最快是什么意思,以及您是多次搜索还是只搜索一次) 看看这个:en.wikipedia.org/wiki/… 我第二个 @MatsPetersson - 听起来很像 KMP 的工作 (en.wikibooks.org/wiki/Algorithm_Implementation/String_searching/…) 【参考方案1】:
/// Returns the position of the 'Nth' occurrence of 'find' within 'str'.
/// Note that 1==find_Nth( "aaa", 2, "aa" ) [2nd "aa"]
/// - http://***.com/questions/17023302/
size_t find_Nth(
    const std::string & str ,   // where to work
    unsigned            N ,     // N'th ocurrence
    const std::string & find    // what to 'find'
) 
    if ( 0==N )  return std::string::npos; 
    size_t pos,from=0;
    unsigned i=0;
    while ( i<N ) 
        pos=str.find(find,from);
        if ( std::string::npos == pos )  break; 
        from = pos + 1; // from = pos + find.size();
        ++i;
    
    return pos;
/**
    It would be more efficient to use a variation of KMP to
    benefit from the failure function.
    - Algorithm inspired by James Kanze.
    - http://***.com/questions/20406744/
*/


int main() 
    
        //                       0123456789.123456789.123
        assert(  3 == find_Nth( "My gorila ate the banana", 1 , "gorila") );
        assert( 18 == find_Nth( "My gorila ate the banana", 1 , "banana") );

        //                       0123456789.123456789.123
        assert(  3 == find_Nth( "My banana ate the banana", 1 , "banana") );
        assert( 18 == find_Nth( "My banana ate the banana", 2 , "banana") );

        assert( std::string::npos == find_Nth( "My banana ate the banana", 3 , "banana") );
        assert( std::string::npos == find_Nth( "My banana ate the banana", 3 , "gorila") );
    
        assert( 1==find_Nth( "aaa", 2, "aa" ) );
        assert( 0==find_Nth( "aaa", 1, "aa" ) );
    
        std::string str;
        //     01234567
        str = "aaaaaaaa"; assert( 8==str.size() );
        assert( find_Nth( str, 0 , "aa") == std::string::npos );
        assert( find_Nth( str, 1 , "aa") == 0 );
        assert( find_Nth( str, 2 , "aa") == 1 );
        assert( find_Nth( str, 3 , "aa") == 2 );
        assert( find_Nth( str, 4 , "aa") == 3 );
        assert( find_Nth( str, 5 , "aa") == 4 );
        assert( find_Nth( str, 6 , "aa") == 5 );
        assert( find_Nth( str, 7 , "aa") == 6 );
        assert( find_Nth( str, 8 , "aa") == std::string::npos  );
        assert( find_Nth( str, 9 , "aa") == std::string::npos  );
    

【讨论】:

以上是关于oracle怎样查找某个字符所在字符串第n次出现的位置的主要内容,如果未能解决你的问题,请参考以下文章

在 Rexx 中查找第 n 个出现的字符

我要获取一个字符串中某个标点第二次出现的位置

python中怎么返回指定查找字符的位置

截取字符串时,查找某字符第二次出现的位置,怎么查

从字符串中查找 C++ 第 n 次出现的子字符串

js怎样获取某个特殊字符最后出现的位置