Mon Apr 06, 2015 6:36 pm
!/( Row| Point| Hospital| Supermarket| Fall| Brae| Wynd| Mile| Mohr| Dell| One| Trak| Trail| Ramp| Esplanade| Cir| View| Gate| Green| Bvd| Gln| Mews| Gdns| Run| Runway|Unknown Name| Trl| Cl| Gr| Spur| Rise| Cres| Aly| Ave| Blvd| Bikeway| Bnd| Bridge| Busway| Bypass| Chase| Cl| Cove| Cr| Ct| Dr| East| Ent| Exit| Fwy| Gdn| Grn| Grv| Hts| Hwy| Jct| Link| Line| Ln| Lp| Mtwy| Mw| North| Park| Pde| Pl| Pkwy| Prom| Railway| Ri| Rd| South| Sq| St| Tce| Tunnel| Turn| Vw| Vst| Way| West| Xing|^$)$|^(State |Exit to: |The |Exit |Entry )/
Tue Apr 07, 2015 10:00 am
PesachZ wrote:ispyisail wrote:My rule is getting so long that I might need to create a rule generator
- Code:
!/( Row| Point| Hospital| Supermarket| Fall| Brae| Wynd| Mile| Mohr| Dell| One| Trak| Trail| Ramp| Esplanade| Cir| View| Gate| Green| Bvd| Gln| Mews| Gdns| Run| Runway|Unknown Name| Trl| Cl| Gr| Spur| Rise| Cres| Aly| Ave| Blvd| Bikeway| Bnd| Bridge| Busway| Bypass| Chase| Cl| Cove| Cr| Ct| Dr| East| Ent| Exit| Fwy| Gdn| Grn| Grv| Hts| Hwy| Jct| Link| Line| Ln| Lp| Mtwy| Mw| North| Park| Pde| Pl| Pkwy| Prom| Railway| Ri| Rd| South| Sq| St| Tce| Tunnel| Turn| Vw| Vst| Way| West| Xing|^$)$|^(State |Exit to: |The |Exit |Entry )/
I wonder what the max length is?
You could use the power of regex to shorten it by reusing certain common letters![]()
Sent using Tapatalk for Android 4.4.2
Wed Apr 08, 2015 7:22 am
${typeRank}:${street}
/(10|11):(?!State |The |.* Glade$|.* Row$|.* Vale$|.* Hill$|.* Point$|.* Hospital$|.* Supermarket$|.* Fall$|.* Brae$|.* Wynd$|.* Mile$|.* Mohr$|.* Dell$|.* One$|.* Trak$|.* Trail$|.* Ramp$|.* Esplanade$|.* Cir$|.* View$|.* Gate$|.* Green$|.* Bvd$|.* Gln$|.* Mews$|.* Gdns$|.* Run$|.* Runway$|.*Unknown Name$|.* Trl$|.* Cl$|.* Gr$|.* Spur$|.* Rise$|.* Cres$|.* Aly$|.* Ave$|.* Blvd$|.* Bikeway$|.* Bnd$|.* Bridge|$.* Busway$|.* Bypass$|.* Chase$|.* Cl$|.* Cove$|.* Cr$|.* Ct$|.* Dr$|.* East$|.* Ent$|.* Exit$|.* Fwy$|.* Gdn$|.* Grn$|.* Grv$|.* Hts$|.* Hwy$|.* Jct$|.* Link$|.* Line$|.* Ln$|.* Lp$|.* Mtwy$|.* Mw$|.* North$|.* Park$|.* Pde$|.* Pl$|.* Pkwy$|.* Prom$|.* Railway$|.* Ri$|.* Rd$|.* South$|.* Sq$|.* St$|.* Tce$|.* Tunnel$|.* Turn$|.* Vw$|.* Vst$|.* Way$|.* West$|.* Xing$|^$|$)/
Wed Apr 08, 2015 7:51 pm
Wed Apr 08, 2015 7:55 pm
/(10|11):(?!State |The |.* (Glade|Row|Vale|Hill|Point|Hospital|Supermarket|Fall|Brae|Wynd|Mile|Mohr|Dell|One|Trak|Trail|Ramp|Esplanade|Cir|View|Gate|Green|Bvd|Gln|Mews|Gdns|Run|Runway|Trl|Cl|Gr|Spur|Rise|Cres|Aly|Ave|Blvd|Bikeway|Bnd|Bridge|Busway|Bypass|Chase|Cl|Cove|Cr|Ct|Dr|East|Ent|Exit|Fwy|Gdn|Grn|Grv|Hts|Hwy|Jct|Link|Line|Ln|Lp|Mtwy|Mw|North|Park|Pde|Pl|Pkwy|Prom|Railway|Ri|Rd|South|Sq|St|Tce|Tunnel|Turn|Vw|Vst|Way|West|Xing)$|.*Unknown Name$|^$|$)/
Thu Apr 09, 2015 7:18 am
Sat Apr 25, 2015 10:20 pm
${typeRank}:${altStreet}
/(10|11):(^(.(?!(Rd$)))*$)/
Sat May 02, 2015 5:51 am
${typeRank}:${altStreet[#]}
/(10|11):.(?!(Rd(#|$)))*(#|$)/
Sat May 02, 2015 6:43 am
Tue May 05, 2015 10:06 am