Oracle Regular Expression | Tamil Tutorial | iCoding

Поділитися
Вставка
  • Опубліковано 18 жов 2024

КОМЕНТАРІ • 21

  • @mohan1958
    @mohan1958 3 роки тому +1

    Nice work, Thanks. It is not easy to teach regular expressions but you made it! My videos are also on you tube..

  • @harishselvam1383
    @harishselvam1383 2 роки тому

    Your videos helpful to us 🎊🎉thank you 🥳

  • @SelvaKumar-hg3ho
    @SelvaKumar-hg3ho 4 роки тому +1

    Great exploration pls upload more topic

  • @velumani1695
    @velumani1695 4 роки тому +1

    super bro... nd inum more then videos ah podunga....

  • @dhineshkumarg2899
    @dhineshkumarg2899 Місяць тому

    My text is having alphabets nukbers , space and .,/-. HOW can i use regexp to select only the text having alphabets numbers and .-/

  • @VIJAYKUMAR.S-qf4bp
    @VIJAYKUMAR.S-qf4bp 10 місяців тому

    Hi bro
    Special characters matum filter panna comments solunga...

  • @samwesley7236
    @samwesley7236 2 роки тому

    explained greatly...

  • @forthepeople7887
    @forthepeople7887 3 роки тому

    Great explanation. 👏🏻👏🏻👏🏻

  • @manoharanmalathi3041
    @manoharanmalathi3041 4 роки тому

    Hi...
    I have interview questions like
    'Apple' word - substring function use pannama each character to act like each column plz help to this and
    Thank you 😊

    • @iCodingTamil
      @iCodingTamil  4 роки тому +2

      Select replace(lpad ('apple',level),lpad('apple',level-1),'') from dual connect by level

    • @pankajkharade6936
      @pankajkharade6936 3 роки тому

      Select Substr( 'Apple',Level,1) Output From DUAL
      Connect By Level

    • @pradeepmca
      @pradeepmca 3 роки тому

      @@iCodingTamil This is a gr8 alternate solution. You could have included explanation for replace with 2 parameters in video dedicated for oracle functions. Nevertheless i referred Oracle documentation to understand what if we don't give 3rd replace parameter, it just omitts and takes the 2nd search string and removes the search string from 1st parameter.

  • @rameshbabu3837
    @rameshbabu3837 3 роки тому

    Plsql video podunga bro

  • @justjeeva1462
    @justjeeva1462 3 роки тому

    Vera11 bro

  • @shylajasaravanabava8225
    @shylajasaravanabava8225 3 роки тому

    Hi sir, i need one query to display the name of all contacts having 5th digit of their phone number as '5' using REGEXP_SUBSTR

  • @mathankumar2228
    @mathankumar2228 4 роки тому

    Podu sema..

  • @yasararafath6389
    @yasararafath6389 4 роки тому

    Thala Idhu SQL thane?

  • @pradeepmca
    @pradeepmca 3 роки тому

    This is a great session on regex.
    select emailaddress from user_ where REGEXP_LIKE (emailaddress, '^[a-z]+', 'i')
    The above query is returning test4@bax.com & asdd@asd.com. How to restrict test4@bax.com,as it is containing number 4?