list_out_dates_between_a_range_of_dates_classic_asp
Class to list out dates between a range of dates in Classic ASP
https://github.com/r0mb0/list_out_dates_between_a_range_of_dates_classic_asp
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (6.5%) to scientific vocabulary
Keywords
Repository
Class to list out dates between a range of dates in Classic ASP
Basic Info
Statistics
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 1
Topics
Metadata Files
README.md
List out dates between a range of dates in Classic ASP
List_out_dates.class.asp's avaible function
- List out dates ->
Public Function extractDates(start_date, end_date, selector, separator, month_name, abbreviate)- The function returns an array with all dates. > > - Where the selector could be: > - "y" for Years > - "m" for Months > - "d" for Days > > - Where the separator could be: > - An arbitrary symbol to separate date elements > > - Where the month_name coud be: > - True for use MonthName function > - False for don't use MonthName function > > - Where abbreviate could be: > - True for abbreviate > - False for don't abbreviate
How to use
From
Test.asp
Initialize the class
asp <%@LANGUAGE="VBSCRIPT"%> <!--#include file="list_out_dates.class.asp"--> <% Dim dates Set dates = New listOutDatesCreate a start date and a end date
asp Dim start_date start_date = "07/02/2025 11:26:46" Dim end_date end_date = "02/04/2027 15:06:30"List out all dates from range
asp Dim temp For Each temp In dates.extractDates(start_date, end_date, "d", "/", True, False) Response.write(temp & "<br>") Next %>
Owner
- Name: Francesco Rombaldoni
- Login: R0mb0
- Kind: user
- Location: Italy
- Company: INRCA/SIA
- Repositories: 20
- Profile: https://github.com/R0mb0
If I'm living in a crisis without realizing it?
Citation (CITATION.cff)
cff-version: 1.2.0 message: "If you use this software, please cite it as below." authors: - family-names: "Rombaldoni" given-names: "Francesco" title: "List_out_dates_between_a_range_of_dates_classic_asp" version: 1.0.0 date-released: 2025-01-08 url: "https://github.com/R0mb0/List_out_dates_between_a_range_of_dates_classic_asp"
GitHub Events
Total
- Release event: 1
- Watch event: 1
- Push event: 16
- Create event: 1
Last Year
- Release event: 1
- Watch event: 1
- Push event: 16
- Create event: 1
Issues and Pull Requests
Last synced: 12 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0