Reltio Connect

 View Only
  • 1.  Reltio Data Validation Functions not working with Regex Expressions

    Posted 06-05-2023 16:30

    Hello,

    I am trying to flag the records where the data contains all the permutations and combinations of Doctor (like dr. DR. etc).

    I have created below regex expression and its giving zero records in return and there are matching records in the database.

    (\\W|^)(?i)(doctor|dr.|dr|d.r.|drs.|drs)(\\W|$)

    sample data: 10925 Briar Mills Dr. Apt 2191



    ------------------------------
    Harshada Phadol
    Ascension Health
    ------------------------------



  • 2.  RE: Reltio Data Validation Functions not working with Regex Expressions

    Posted 06-06-2023 00:11

    Hi Harshada,

    Please try using the below, i was able to get the desired output when i have removed \\W at the beginning & ending of the regex expression.

    (\\W|^) and (\\W|$) components are used to match the start/end of a line to ensure that the matched word is not part of a larger word.

    Regex used : (|^)(?i)(doctor|dr.|dr|d.r.|drs.|drs)(|$)

    Validated the same sample data with new Regex function through  https://regex101.com/ as well.

    Thanks & Regards,



    ------------------------------
    Chetan P
    Lead MDM Specialist
    Freshworks
    Chennai
    ------------------------------



  • 3.  RE: Reltio Data Validation Functions not working with Regex Expressions

    Posted 06-06-2023 01:00
    This message was sent securely using Zix®

    Hi Chetan,

    Thank you for the quick response.
     I checked with the given expression but its accepts the below record as well.

    Dell Children's Hospital

    Please check and let me know if you can help
    --
    Harshada P
    Sr. Developer
    Master Data Management 



    CONFIDENTIALITY NOTICE:
    This email message and any accompanying data or files is confidential and may contain privileged information intended only for the named recipient(s). If you are not the intended recipient(s), you are hereby notified that the dissemination, distribution, and or copying of this message is strictly prohibited. If you receive this message in error, or are not the named recipient(s), please notify the sender at the email address above, delete this email from your computer, and destroy any copies in any form immediately. Receipt by anyone other than the named recipient(s) is not a waiver of any attorney-client, work product, or other applicable privilege.


    This message was secured by Zix®.





  • 4.  RE: Reltio Data Validation Functions not working with Regex Expressions

    Posted 06-07-2023 00:39

    Hi Harshada,

    Please find the below updated function that would help to detect only needed patterns.

    Regex used -  (^| )(dr|dr\.|doctor|d\.r\.|drs\.|drs)( |$)
    Validated the same sample data as stated above.

    Thanks & Regards,
    Chetan



    ------------------------------
    Chetan P
    Lead MDM Specialist
    Freshworks
    Chennai
    ------------------------------



  • 5.  RE: Reltio Data Validation Functions not working with Regex Expressions

    Posted 06-07-2023 12:59

    Hi Chetan

    Thank you for your help

    I checked the updated expression and it works perfectly on https://regex101.com/ but Reltio returns zero records.

    Most of the expressions works with regex101 but there is some problem with Reltio. 

    Thanks



    ------------------------------
    Harshada Phadol
    Ascension Health
    ------------------------------



  • 6.  RE: Reltio Data Validation Functions not working with Regex Expressions

    Posted 06-08-2023 10:59

    Hi Harshada,

    Most of my use case match with the output of regex101.com and Reltio.

    Let me check implementing the same in Reltio and update you.

    Thanks & Regards,



    ------------------------------
    Chetan P
    Lead MDM Specialist
    Freshworks
    Chennai
    ------------------------------



  • 7.  RE: Reltio Data Validation Functions not working with Regex Expressions

    Reltio Employee
    Posted 06-08-2023 14:23

    I tried a little example that looks like this:

    Then I did the following tests:
    a) Title of 'Children's Physician' (contains 'dr' but not any variation of 'doctor')

    b) Changed title to 'Doctor' (should trigger the validation)

    Give that a try and see if you have a similar response



    ------------------------------
    David Howard
    ------------------------------