- Регистрация
- 08.10.2023
- Сообщения
- 134
- Благодарностей
- 35
- Баллы
- 28
Hi i am back again,
from this post :
I made a new regex working with all the website using the extension ( and not only the one from the exemple)
<link rel="alternate" hreflang="[a-z-]+" href="([^"]+)"
But i got a new trouble trouble :
I have to manage/select groups,
the best way to do it i guess is by doing output by table and exclude the columns? ( 0 in my case)
Because from what i understood it is no possible to do it directly by the Regex...
Did i miss something or there is better way?
Thank by advance
PS : i did it also by C# but the goal of my question is to understand better Zenno,)
from this post :
I made a new regex working with all the website using the extension ( and not only the one from the exemple)
<link rel="alternate" hreflang="[a-z-]+" href="([^"]+)"
But i got a new trouble trouble :
I have to manage/select groups,
the best way to do it i guess is by doing output by table and exclude the columns? ( 0 in my case)
Because from what i understood it is no possible to do it directly by the Regex...
Did i miss something or there is better way?
Thank by advance
PS : i did it also by C# but the goal of my question is to understand better Zenno,)
C#:
//our list that we just made with regex
var list = project.Lists["Regex"];
if (list != null && list.Count > 0)
{
// Iterate through the list
for (int i = 0; i < list.Count; i++)
{
// Get the current item from the list
var currentItem = list[i];
Tab tab = instance.NewTab(i.ToString());
tab.Navigate(currentItem.ToString());
}
}