diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,3 +17,7 @@
 
 * Second version revised A. Fixed issue with readU2 function.
 
+## 0.2.2.0 -- 2023-09-23
+
+* Second version revised B. Fixed issue with readBasic0G function and related ones.
+
diff --git a/Phladiprelio/General/Datatype.hs b/Phladiprelio/General/Datatype.hs
--- a/Phladiprelio/General/Datatype.hs
+++ b/Phladiprelio/General/Datatype.hs
@@ -39,10 +39,14 @@
  -> ([a] -> [Double])
  -> String 
  -> [Double]
-readBasic0G p temp fConvA fConvD xs@(_:_) = dc `mappend` ((readU2 ws * d) : readBasic0G p d fConvA fConvD qs)
+readBasic0G p temp fConvA fConvD xs@('_':ys) = (readU2 ws * temp) : readBasic0G p temp fConvA fConvD qs
+   where (ws, qs) = span isDigit ys
+readBasic0G p temp fConvA fConvD xs@(_:_) 
+ | null us = dc
+ | otherwise = dc `mappend` ((readU2 ws * d) : readBasic0G p d fConvA fConvD qs)
    where (ts, us) = break (== '_') xs
          dc 
-           | not . p $ ts = [temp]
+           | null ts || not (p ts) = [temp]
            | otherwise = fConvD . fConvA $ ts
          d = last dc
          vs = dropWhile (== '_') us
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@
 
 P.S.: the author would like to devote this project to support the [Foundation Gastrostars](https://gastrostars.nl).
 
-On the 2023/09/22 there is Nathalie's Kok birthday. She is the mother of the foundation founder [Emma Kok](https://emmakok.nl) and the member of the foundation board, so the versions 0.1.0.0, 0.1.1.0, 0.2.0.0 and 0.2.1.0 (the four first ones!) are also dedicated to Nathalie Kok.
+On the 2023/09/22 there is Nathalie's Kok birthday. She is the mother of the foundation founder [Emma Kok](https://emmakok.nl) and the member of the foundation board, so the versions 0.1.0.0, 0.1.1.0, 0.2.0.0, 0.2.1.0 and 0.2.2.0 (the five first ones!) are also dedicated to Nathalie Kok.
 
 If you would like to share some financial support, please, contact the mentioned foundation
 using the URL:
diff --git a/phladiprelio-general-datatype.cabal b/phladiprelio-general-datatype.cabal
--- a/phladiprelio-general-datatype.cabal
+++ b/phladiprelio-general-datatype.cabal
@@ -1,6 +1,6 @@
 cabal-version:      1.24
 name:               phladiprelio-general-datatype
-version:            0.2.1.0
+version:            0.2.2.0
 synopsis:           Extended functionality of PhLADiPreLiO
 description:        Can be used not only for language, but also for simpler music and lyrics composing.
 homepage:
