ش | ی | د | س | چ | پ | ج |
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
لطفا کامل متن لینک زیر را مطالعه بفرمائید در کدهای vba حتما نیاز خواهد شد
Regular expressions are patterns used to match character combinations in strings. In JavaScript, regular expressions are also objects. These patterns are used with the exec() and test() methods of RegExp , and with the match() , matchAll() , replace() , replaceAll() , search() , and split() methods of String .
RegEx stands for “Regular Expression” in VBA Excel and is a sequence of characters that defines the search pattern for finding a specific pattern of characters in a string of values. In a simple word, “we can create a regular expression pattern and use it to search for the string of that pattern.”
Dim regexpObject As Object
Set regexpObject = CreateObject(“VBScript.RegExp”)
.Pattern="\d" Or "[^0-9]"
.IgnoreCase ... Boolean
.Global
.Test
.Replace
.Execute
\d : digit
\D : non-digit
\r : Return { Enter }