Jump to content

[SOLVED] Using regex to mask the SSN


fletchsod

Recommended Posts

It's been a while I haven't use regular express, so I need someone with a fresh mind on this one.  There is a SSN that is within the HTML tags or XML tags, so I only need to mask the SSN.  There may be or may not be whitespace(s) between the SSN and the html/xml tags.

 

IE -->  <SSN>111-11-1111</SSN>

    -->  <SSN> 111-11-1111</SSN>

    -->  <SSN> 111-11-1111 </SSN>

    -->  <SSN>    111-11-1111  </SSN>

 

Whatever happens, I need it to become like this...

 

IE --> <SSN>XXX-XX-1111</SSN>

 

Thanks...

Link to comment
Share on other sites

I recommend an XML parser if you're doing other work; otherwise:

 

<pre>
<?php
$data = <<<DATA
IE -->  <SSN>111-11-1111</SSN>
    -->  <SSN> 111-11-1111</SSN>
    -->  <SSN> 111-11-1111 </SSN>
    -->  <SSN>     111-11-1111  </SSN>
DATA;
$data = preg_replace('%<SSN>\s*\d{3}-\d{2}-(\d{4})\s*</SSN>%', '<SSN>XXX-XX-$1</SSN>', $data);
echo htmlspecialchars($data);
?>
</pre>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.