Windows: 按住 Alt 鍵並在數字鍵盤上輸入 0178,然後釋放 Alt 鍵。
Mac: 按 Option + 00B2。
Linux: 按 Ctrl + Shift + u,然後輸入 00B2 並按 Enter。
針對16-22歲青年,每人發放1200點文化幣;13-15歲青年,每人600點文化幣,1點等於新臺幣1元,可用於看表演、看展覽、看國片、買書等藝文消費折抵,領取使用期間自114年1月1日至114年12月31日止。
詳情請參閱文化部 文化幣
using System.Text.RegularExpressions;
整數
string str = "測試123abc測試";
string Result =Regex.Replace(str, @"[^0-9]+", "");
小數
string str = "測試123.123測試";
string Result =Regex.Replace(str, @"[^\d.\d]", "");