Skip to content
View aMcCode's full-sized avatar
Block or Report

Block or report aMcCode

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. react-portfolio react-portfolio Public

    JavaScript

  2. tech-blog tech-blog Public

    JavaScript

  3. social-network-api social-network-api Public

    JavaScript

  4. Using Regex to Find All Text in Sing... Using Regex to Find All Text in Single Quotes
    1
    # Matching All Text in Single Quotes
    2
    
                  
    3
    In my daily work, I am required to parse text generated by various systems. One such system generates a data entry audit trail with output that looks like the text below. When I need to compare the old value entered to the new value entered for a given datapoint, I search the audit trail for the latest entry prior to the current entry based on an an audit date. Once I have that specific audit entry, I search for the specific data entered. Since I can count on the validated system that produces the audit trail to output the audit entry in a specific way, i.e. "User entered 'some value'", I can use regex to extract the value. I also need to find where the user has entered an empty value.
    4
    
                  
    5
    The purpose of this tutorial is to detail how, ```((?<=\').*(?=\'))|(User entered empty\.)```, the regex or regular expression pattern for this specific search works.
  5. team-profile-generator team-profile-generator Public

    JavaScript

  6. hand-me-up_amcn hand-me-up_amcn Public

    Forked from olivelliott/hand-me-up

    A MERN Stack e-commerce site where users can donate clothes and purchase products with an opportunity to donate to a charity or organization of their choice.

    JavaScript