<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>ClipboardFusion RSS: Detect phone number and remove all special characters</title>
<atom:link href="https://www.clipboardfusion.com/Discussions/RSS/?TopicID=0d01bf26-e637-43fa-980d-2c20a379c7ab" rel="self" type="application/rss+xml" />
<link>https://www.clipboardfusion.com/Discussions/RSS/?TopicID=0d01bf26-e637-43fa-980d-2c20a379c7ab</link>
<description>ClipboardFusion RSS: Detect phone number and remove all special characters</description>
<lastBuildDate>Wed, 06 May 2026 12:58:20 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.clipboardfusion.com/Discussions/RSS/?TopicID=0d01bf26-e637-43fa-980d-2c20a379c7ab</generator>
<item>
<title>RE: Detect phone number and remove all special characters</title>
<link>https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#10</link>
<pubDate>Fri, 19 May 2023 15:00:55 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#10</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Thank you very much! It works perfectly!
Quote:
You can do this with just a Trigger rule that uses a Regex to look for ###-###-#### and then have the Trigger do a text replace on the hyphen. I've attached a screenshot for reference.
The RegEx is (\d{3}-){2}\d{4}
This part (\d{3}-){2}
says lo...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thank you very much! It works perfectly!<br/>
<br/>
<div class="BackGrey"><div class="Text"><div><b>Quote:</b></div>You can do this with just a Trigger rule that uses a Regex to look for ###-###-#### and then have the Trigger do a text replace on the hyphen. I've attached a screenshot for reference.<br/>
<br/>
The RegEx is <div class="Inline"><pre>(\d{3}-){2}\d{4}</pre></div><br/>
<br/>
This part <div class="Inline"><pre>(\d{3}-){2}</pre></div> says look for 3 digits followed by a hyphen, and do it twice.<br/>
This part <div class="Inline"><pre>\d{4} says look for 4 digits</pre></div><br/>
<br/>
Hope that helps!</div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Detect phone number and remove all special characters</title>
<link>https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#9</link>
<pubDate>Thu, 18 May 2023 19:32:25 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#9</guid>
<category>ClipboardFusion</category>
<description><![CDATA[You can do this with just a Trigger rule that uses a Regex to look for ###-###-#### and then have the Trigger do a text replace on the hyphen. I've attached a screenshot for reference.
The RegEx is (\d{3}-){2}\d{4}
This part (\d{3}-){2}
says look for 3 digits followed by a hyphen, and do it tw...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
You can do this with just a Trigger rule that uses a Regex to look for ###-###-#### and then have the Trigger do a text replace on the hyphen. I've attached a screenshot for reference.<br/>
<br/>
The RegEx is <div class="Inline"><pre>(\d{3}-){2}\d{4}</pre></div><br/>
<br/>
This part <div class="Inline"><pre>(\d{3}-){2}</pre></div> says look for 3 digits followed by a hyphen, and do it twice.<br/>
This part <div class="Inline"><pre>\d{4} says look for 4 digits</pre></div><br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Detect phone number and remove all special characters</title>
<link>https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#8</link>
<pubDate>Thu, 18 May 2023 17:13:04 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#8</guid>
<category>ClipboardFusion</category>
<description><![CDATA[What you want can only be done by c# coding, thus a macro. The macro looks at the/your copied string. If only digits and/ or hyphens it has to remove the hyphens otherwise do nothing. Yes a few lines of code 😁, but I do not think it is in the library yet.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
What you want can only be done by c# coding, thus a macro. The macro looks at the/your copied string. If only digits and/ or hyphens it has to remove the hyphens otherwise do nothing. Yes a few lines of code 😁, but I do not think it is in the library yet.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Detect phone number and remove all special characters</title>
<link>https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#7</link>
<pubDate>Thu, 18 May 2023 12:53:02 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#7</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Thanks for all the info. I don't mind buying the Pro version as long as I can make it work.
The problem is that I only want to remove all special characters IF the clipboard content matchs a phone number format.
1. When ctrl-c is pressed
2. Clipboardfusion should check the clipboard content
3...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thanks for all the info. I don't mind buying the Pro version as long as I can make it work.<br/>
<br/>
The problem is that I only want to remove all special characters IF the clipboard content matchs a phone number format.<br/>
<br/>
1. When ctrl-c is pressed<br/>
2. Clipboardfusion should check the clipboard content<br/>
3. If the content matches a phone number format (e.g. xxx-xxx-xxxx)<br/>
4. Remove all non-numeric characters, and update the clipboard content<br/>
5. So when I paste it, the phone number is cleaned<br/>
<br/>
Is there any example macro code that I can try? I guess it is only a few lines of code, but I don't know how to write it.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Detect phone number and remove all special characters</title>
<link>https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#6</link>
<pubDate>Thu, 18 May 2023 11:56:56 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#6</guid>
<category>ClipboardFusion</category>
<description><![CDATA[and visit this discussion: https://www.clipboardfusion.com/Discussions/View/run-trigger-on-double-copy-not-working/?ID=03925d69-ad49-4ec4-a521-604e75d8370b]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
and visit this discussion: https://www.clipboardfusion.com/Discussions/View/run-trigger-on-double-copy-not-working/?ID=03925d69-ad49-4ec4-a521-604e75d8370b
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Detect phone number and remove all special characters</title>
<link>https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#5</link>
<pubDate>Thu, 18 May 2023 11:54:14 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#5</guid>
<category>ClipboardFusion</category>
<description><![CDATA[and if it is only about hyphens to be replaced you can use a trigger only on (double) ctrl-C. In the trigger settings you can specify to replace a hyphen by nothing or a space or whatever.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
and if it is only about hyphens to be replaced you can use a trigger only on (double) ctrl-C. In the trigger settings you can specify to replace a hyphen by nothing or a space or whatever.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Detect phone number and remove all special characters</title>
<link>https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#4</link>
<pubDate>Thu, 18 May 2023 08:17:07 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#4</guid>
<category>ClipboardFusion</category>
<description><![CDATA[You can run a macro from a trigger. This feature is not available in the free version. So with ctrl-C or double ctrl-C a trigger is activated and in the trigger you can specify/include the macro that replaces the unwanted characters.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
You can run a macro from a trigger. This feature is not available in the free version. So with ctrl-C or double ctrl-C a trigger is activated and in the trigger you can specify/include the macro that replaces the unwanted characters.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Detect phone number and remove all special characters</title>
<link>https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#3</link>
<pubDate>Wed, 17 May 2023 18:14:35 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#3</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Is it possible to not activate by hotkey? But always trigger automatically whenever I copy a text, it will remove Hyphens?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Is it possible to not activate by hotkey? But always trigger automatically whenever I copy a text, it will remove Hyphens?
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Detect phone number and remove all special characters</title>
<link>https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#2</link>
<pubDate>Wed, 17 May 2023 17:37:49 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab#2</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Hi Eric,
We have a script in our repository called "Replace Special Character with Hyphens" that you can download (ClipboardFusion Settings  Macros  Download Premade Macros) and modify. You can add/remove any special characters you want it to modify, and attach a key combination to manually run ...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hi Eric,<br/>
<br/>
We have a script in our repository called "Replace Special Character with Hyphens" that you can download (ClipboardFusion Settings > Macros > Download Premade Macros) and modify. You can add/remove any special characters you want it to modify, and attach a key combination to manually run it when you copy a phone number.<br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
</item>
<item>
<title>Detect phone number and remove all special characters</title>
<link>https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab</link>
<pubDate>Wed, 17 May 2023 16:25:54 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/detect-phone-number-and-remove-all-special-characters/?ID=0d01bf26-e637-43fa-980d-2c20a379c7ab</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Hi, any tips on how to detect when copying a phone number and then remove all special characters from the clipboard? Thank!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hi, any tips on how to detect when copying a phone number and then remove all special characters from the clipboard? Thank!
</div>
]]></content:encoded>
</item>
</channel>
</rss>