Processing Ajax...

Title

Message

Confirm

Confirm

Confirm

Confirm

Are you sure you want to delete this item?

Confirm

Are you sure you want to delete this item?

Replace Period (Dot) with a Space

Description
This macro will replace all periods with a space.
Language
C#.net
Minimum Version
Created By
Nima.M
Contributors
-
Date Created
Jul 19, 2017
Date Last Modified
Jul 19, 2017

Macro Code

using System;

public static class ClipboardFusionHelper
{
	public static string ProcessText(string text)
	{
		if (text.Contains("."))
		{
			return text = text.Replace(".", " ");
		}
		
		return text;
	}
}