Click here to Skip to main content
15,881,938 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to automatically change links like this:
<a href="https://www.burning-glass.com/wp-content/uploads/rebooting_jobs_2017.pdf">Rebooting Jobs: How computer science skills spread in the job market</a>

To this:
<pre><a href="https://www.burning-glass.com/wp-content/uploads/rebooting_jobs_2017.pdf" title="Rebooting Jobs: How computer science skills spread in the job market ">Rebooting Jobs: How computer science skills spread in the job market</a>


It's to make links across my site more acessiblefor the blind.

A friend who knows regex suggested I use
Quote:
<(a href=[^>]*)>([^<]*)<\/a>>
to make the two groups and
Quote:
<$1 title="$2">$2

To do the replacement. I used Regex101 and it seemed to work fine at first, but for no reason I can find it sometimes now refuses to match any terms! Can anyone suggest a rephrase of the first search string to make it work as needed?

What I have tried:

A friend who knows regex suggested I use <(a href=[^>]*)>([^<]*)<\/a> to make the two groups and
><$1 title="$2">$2
To do the replacement. I used Regex101 to do the work (using PCRE (PHP) and it seemed to work fine at first, but for no reason I can find it sometimes now refuses to match any terms! Can anyone suggest a rephrase of the first search string to make it work as needed?
Posted
Updated 28-Oct-22 17:33pm
Comments
Richard Deeming 3-Oct-22 5:11am    
Did you actually check with a screen reader and/or a blind person whether adding a title to the link which duplicates the text of the link actually improves accessibility? I suspect the screen reader will simply read out the title and the text, duplicating the content and annoying your blind users. :)

1 solution

There was an extra trailing > there for some reason. Removing it solved the problem!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900