number_utilities_calssic_asp
Classic ASP class that contains a collection of number utilites.
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
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (6.9%) to scientific vocabulary
Keywords
Repository
Classic ASP class that contains a collection of number utilites.
Basic Info
Statistics
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
- Releases: 1
Topics
Metadata Files
README.md
Number utilities in Calssic ASP
number_utilities.class.asp's avaible functions
- Function to split a number as a string ->
Public Function split_number(number, splitting_position) - Function to check if a number is an integer ->
Public Function is_integer(number) - Function to count number's digits ->
Public Function count_number_digits(number) - Function to free round a number ->
Public Function free_round(number, deciaml_to_round, number_from_starting_round)> > - Where the decimaltoround is the decimal position for the number to round. > - Where the numberfromstarting_round is the round param -> For example, add 1 if the number afther the number to round is >= 5.
How to use
From
Test.asp
Initialize the class
asp <%@LANGUAGE="VBSCRIPT"%> <!--#include file="number_utilities.class.asp"--> <% Dim utilities Set utilities = new number_utilitiesUse the class
asp Response.write("<h3> Test Split Number </h3><br>") Response.write("Number: 345 <br>") Response.write("Splitting Position: 2 <br>") Dim temp temp = utilities.split_number(345, 2) Response.write("First element: " & temp(0) & "<br>") Response.write("Second element: " & temp(1) & "<br>") Response.write("Number: 12.345 <br>") Response.write("Splitting Position: 3 <br>") temp = utilities.split_number(12.345, 2) Response.write("First element: " & temp(0) & "<br>") Response.write("Second element: " & temp(1) & "<br>") Response.write("Number: 123.0345 <br>") Response.write("Splitting Position: 3 <br>") temp = utilities.split_number(123.0345, 2) Response.write("First element: " & temp(0) & "<br>") Response.write("Second element: " & temp(1) & "<br>") %>
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: "Number_utilities_calssic_asp" version: 1.0.0 date-released: 2025-02-03 url: "https://github.com/R0mb0/Number_utilities_calssic_asp"
GitHub Events
Total
- Release event: 1
- Watch event: 2
- Push event: 18
- Pull request event: 2
- Fork event: 1
- Create event: 3
Last Year
- Release event: 1
- Watch event: 2
- Push event: 18
- Pull request event: 2
- Fork event: 1
- Create event: 3
Committers
Last synced: 8 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Francesco Rombaldoni | f****i@c****t | 18 |
| ROMFIR61 | r****r@h****m | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 0
- Total pull requests: 2
- Average time to close issues: N/A
- Average time to close pull requests: 12 minutes
- Total issue authors: 0
- Total pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 2
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 2
- Average time to close issues: N/A
- Average time to close pull requests: 12 minutes
- Issue authors: 0
- Pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 2
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
- ROMFIR61 (2)