using System;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
string pattern = @"""uf"":""([^""]+)(?!.*dating[1,2])";
string input = @"[{""ads"":[{""uf"":""https://prhzxq.com/wnclcm?aid=2906583808848052910&t=1659642044&s=776108&mid=0"",""ttl"":""Sarah (31) 1 km from you"",""n"":""Hey, do you want to come? 😉😘"",""gf"":"",""ic"":""https://i.wmgtr.com/cic/Ff89Uqu0t0q-Ic97IVjQaovVMiroHWrm.png"",""tn"":""}],""rinfo"":{""rw"":""/wnrw?aid=2906583808848052910"",""rc"":""}},{""ads"":[{""uf"":""https://prhzxq.com/wnclcm?aid=2906583808848052910&t=1659642044&s=770131&mid=1"",""ttl"":""Brittany (30) 3 km from you"",""n"":""Hey, do you want to come? 😉😘"",""gf"":"",""ic"":""https://i.wmgtr.com/cic/h41dZhp8C7mIiHIIdXGZ9gSAZ1ZQjD0T.png"",""tn"":""dating2""}],""rinfo"":{""rw"":"",""rc"":""}}]";
RegexOptions options = RegexOptions.Multiline;
foreach (Match m in Regex.Matches(input, pattern, options))
{
Console.WriteLine("'{0}' found at index {1}.", m.Value, m.Index);
}
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for C#, please visit: https://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex(v=vs.110).aspx