Oracle
 sql >> Base de données >  >> RDS >> Oracle

Comment trouver le nombre et les noms de caractères distincts dans une chaîne en PL/SQL

Vous pouvez utiliser une expression régulière comme suit :

SET serveroutput ON
DECLARE
     str        VARCHAR2(20):='helloexample';
     str_length NUMBER;
     c          VARCHAR2(20):=NULL;
     d          NUMBER;
BEGIN
     str_length:=LENGTH(str);
     FOR i IN 1..str_length
     LOOP
          IF regexp_instr(c,SUBSTR(str,i,1))>0 THEN
               NULL;
          ELSE
               c:=c||SUBSTR(str,i,1);
          END IF;
     END LOOP;
     dbms_output.put_line(c);
END;

la réponse serait :

heloxamp