Shaare your links...
6217 links
Shared links on http://www.la-pub-dans-les-films.fr/shaarli/ Home Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
page 1 / 1
2 results for tags notepad x
  • notepad++
    notepad++
    own reminder

    supprimer les lignes contenant : bimbamboum

    tagada danfjfh hfjfd bimbamboum fgrh fhzekhje
    heiuthgr grghrn bimbamboum rrhjthjtn rhjtrkhljtr
    gjkggr bimbamboum kerpogerok

    (.*)bimbamboum(.*)

    A l’inverse ne conserver que les les lignes contenant (à vérifier) : bimbamboum

    ^((?!bimbamboum).)*$\n

    ———————————-
    Supprimer doublon :
    regex : ^(.*?)$\s+?^(?=.*^\1$)

    ^ matches the start of the line.

    (.*?) matches any characters 0 or more times, but as few as possible (It matches exactly on row, this is needed because of the « . matches newline » option). The matched row is stored, because of the brackets around and accessible using \1

    $ matches the end of the line.

    \s+?^ this part matches all whitespace characters (newlines!) till the start of the next row ==> This removes the newlines after the matchd row, so that no empty row is there after the replacement.

    (?=.*^\1$) this is a positive lookahead assertion. This is the important part in this regex, a row is only matched (and removed), when there is exactly the same row following somewhere else in the file.

    ----------------------------
    supprimer tout ce qui se trouve aprés bimbamboum
    rechercher :     bimbamboum (.*$)
    remplacer  :     bimbamboum

    inversement ce qui se trouve avant
    rechercher :    (.*?) bimbamboum
    remplacer  :     bimbamboum

    ————————————

    Sur Notepad++ c’est assez simple de remplacer quelque chose par un saut de ligne :

    – 1) Appuyer sur Ctrl+F (Ouvre une fenêtre de recherche)
    – 2) Cliquer sur l’onglet « Remplacer »
    – 3) Saisir dans le premier champ « Recherche : » ce que vous voulez remplacer dans le texte
    – 4) Cliquer en bas, dans le cadre « Mode de Recherche » sur « Mode étendu (\n, \t, \0, \x…) »
    – 5) Entrer dans le deuxième champ « Remplacer par :  » ceci \n qui est le symbole d’un saut de ligne.
    – 6) Cliquer sur « Remplacer tout »

    AJOUTER EN FIN DE LIGNE

    (.)$

    remplacer par

    \1 toto
    ne pas oublier d’echapper les caractéres utlisés par les regex avec \
    ex : si on veut ajouter ‘); faire \1’\);

    —————————————–

    remplacer une chaine de caractére en fin de ligne

    toto à la plage avec tata son pappa

    pour remplacer « avec tata son pappa »
    par rien faire :
    avec(.*?)$
    remplacer par : rien

    ———————————————–
    Ne conserver que les urls dans un fichier (pour un nom de domaine precis)

    Wrap around:: yes
    Find: .*?characterbefore(https://www.exampledomain/category/.*?)characterafter|.*
    Replace: \1\n
    Regular expression: yes
    . matches newline: yes

    Click Replace All
    </DL><p>
    Fri Jul 21 22:40:36 2023 - permalink -
    - http://www.la-pub-dans-les-films.fr/shaarli/?searchterm=notepad
    notepad
  • Use your browser as Notepad
    Mon Jul 8 23:44:48 2013 - permalink -
    - http://www.fizerkhan.com/blog/posts/Use-your-browser-as-Notepad.html
    browser Notepad
Links per page: 20 50 100
page 1 / 1
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.