كثر الحديث والطلب عن هذا الموضوع (استخراج الارقام أو الأحرف او الكلمات من نص)
لذلك قمت بتحميل هذا الملف الذي عسى ان يستفيد منه اكبر عدد ممكن من الاعضاء
الملف يحتوي على دالّة معرفة
Option Explicit
Function Salim_Single_Match(aString As String, my_expression As String, n%) As Variant
Dim RegEx As New VBScript_RegExp_10.RegExp
Dim NowArray() As String
Dim Match, matches As Object
Dim x%, cnt%
With RegEx
.Pattern = my_expression
.Global = True
.IgnoreCase = True
End With
On Error Resume Next
Set matches = RegEx.Execute(aString)
x = matches.Count
If x = 0 Then
Error.Clear
Salim_Single_Match = "No Match": Exit Function
End If
ReDim NowArray(x - 1)
For Each Match In matches
NowArray(cnt) = Match.Value
cnt = cnt + 1
Next
If n > cnt Then n = cnt
Salim_Single_Match = NowArray(n - 1)
End Function
salim_UDF_Formula.xlsm