my datatable like
Data
$@123
india
kraft
£763
!900
to filter datable special charactered and numbered column except alphabet
please help me find solution
my datatable like
Data
$@123
india
kraft
£763
!900
to filter datable special charactered and numbered column except alphabet
please help me find solution
You could loop through each row in the Datatable.
And then check if the column has special characters using Regex:
System.Text.RegularExpressions.Regex.IsMatch(row(“Data”).ToString, “[1]+$”)
EDIT:
This is same as using the “Is match” activity,
Input: row(“Data”).ToString
pattern: “[2]+$”
thank you so much , this is good but i dont want in boolean i want to select special character in column
could you please tell me using Select query
@brindhaS You could use “Matches” activity with the same input and pattern mentioned earlier. The result will be in a collection.
thank you ,i’ve tried i getting alpabet column ‘abc’ i want only special character column
thanks
thanks its working,you said it is in collection
,In this collection it storing only one value at a time my datatable like thisthank you so much for quick reply